if (document.images)
{
	home_on = new Image(99,49); 
	home_on.src = "/images/button1_on.gif";
	
	home_off = new Image(99,49); 
	home_off.src = "/images/button1.gif";
	
	handbags_on = new Image(179,49); 
	handbags_on.src = "/images/button2_on.gif";
	
	handbags_off = new Image(179,49); 
	handbags_off.src = "/images/button2.gif";
	
	secrets_off = new Image(98,49); 
	secrets_off.src = "/images/button3.gif";	
	
	secrets_on = new Image(98,49); 
	secrets_on.src = "/images/button3_on.gif";
	
	celebrity_off = new Image(150,49); 
	celebrity_off.src = "/images/button4.gif";	
	
	celebrity_on = new Image(150,49); 
	celebrity_on.src = "/images/button4_on.gif";
}

function changeButton(button,type)
{
	temp = eval('document.' + button);

	if (type == "over")
	{
		temp.src = eval(button + '_on.src');
	}
	else if (type == "out")
	{
		temp.src = eval(button  + '_off.src');
	}
}