/*--------------------------------------------------------------------------
 *  Image Rollover and Clickover Script
 *  (c) 2007 PinkDylan
 *  www.pinkdylan.co.uk
 *--------------------------------------------------------------------------*/

function initbullets() {
	bullets = document.getElementsByClassName("bullet");
	for(i = 0; i < bullets.length; i++) {
	    Event.observe(bullets[i], 'mouseover', bullet_over, false);
	    Event.observe(bullets[i], 'mouseout', bullet_out, false);
	}
}
function bullet_over(evt){
	var child = Event.element(evt);
	$(child.id).src = 'd-b-10.gif';
	$('description').src = 'img/' + child.id + '.jpg';
	Event.stop(evt);
}
function bullet_out(evt){
	var child = Event.element(evt);
	$(child.id).src = 'd-r-10.gif';
	$('description').src = 'img/blank.gif';
	Event.stop(evt);
}
var bullets;
window.onload = initbullets;
