var order_off,order_on,horse_off, horse_on,horse1_off, horse1_on, cow_off, cow_on, pig_off, pig_on, rabbit_off, rabbit_on, dog_off, dog_on, caution_on, caution_off;

horse1_off = new Image();
horse1_off.src = "images/bullet_horse.gif";
horse1_on = new Image();
horse1_on.src = "images/bullet_horse_over.gif";

horse_off = new Image();
horse_off.src = "images/bullet_horse.gif";
horse_on = new Image();
horse_on.src = "images/bullet_horse_over.gif";
cow_off = new Image();
cow_off.src = "images/bullet_cow.gif";
cow_on = new Image();
cow_on.src = "images/bullet_cow_over.gif";
pig_off = new Image();
pig_off.src = "images/bullet_pig.gif";
pig_on = new Image();
pig_on.src = "images/bullet_pig_over.gif";
rabbit_off = new Image();
rabbit_off.src = "images/bullet_rabbit.gif";
rabbit_on = new Image();
rabbit_on.src = "images/bullet_rabbit_over.gif";
dog_off = new Image();
dog_off.src = "images/bullet_dog.gif";
dog_on = new Image();
dog_on.src = "images/bullet_dog_over.gif";
caution_off = new Image();
caution_off.src = "images/bullet_dog_caution.gif";
caution_on = new Image();
caution_on.src = "images/bullet_dog_caution_over.gif";


order_off = new Image();
order_off.src = "images/order.gif";
order_on = new Image();
order_on.src = "images/order_over.gif";

order1_off = new Image();
order1_off.src = "images/order.gif";
order1_on = new Image();
order1_on.src = "images/order_over.gif";


function horse1_over()
{
	document.horse1.src = horse1_on.src;
}

function horse1_out()
{
	document.horse1.src = horse1_off.src;
}


function horse_over()
{
	document.horse.src = horse_on.src;
}

function horse_out()
{
	document.horse.src = horse_off.src;
}

function caution_over()
{
	document.caution.src = caution_on.src;
}

function caution_out()
{
	document.caution.src = caution_off.src;
}

function cow_over()
{
	document.cow.src = cow_on.src;
}

function cow_out()
{
	document.cow.src = cow_off.src;
}

function cow1_over()
{
	document.cow1.src = cow_on.src;
}

function cow1_out()
{
	document.cow1.src = cow_off.src;
}

function pig_over()
{
	document.pig.src = pig_on.src;
}

function pig_out()
{
	document.pig.src = pig_off.src;
}

function rabbit_over()
{
	document.rabbit.src = rabbit_on.src;
}

function rabbit_out()
{
	document.rabbit.src = rabbit_off.src;
}

function dog_over()
{
	document.dog.src = dog_on.src;
}

function dog_out()
{
	document.dog.src = dog_off.src;
}


function order_over()
{
	document.order.src = order_on.src;
}

function order_out()
{
	document.order.src = order_off.src;
}


function order1_over()
{
	document.order1.src = order1_on.src;
}

function order1_out()
{
	document.order1.src = order1_off.src;
}

//----------------Following lines of code is used to restrict the user from----------------
//-----selecting the text and images and from usign right click added on 27th Oct 2003-----
document.oncontextmenu=new Function("return false")
document.onselectstart=new Function("return false")
document.onselect=new Function("return false")
document.ondragstart=new Function("return false")
//------------------------------------------------------------------------------------------