
//***********************************************
//changes pictures with each text with mouse over

//checks if browser can read images
//sets alternative images
	if (document.images)
		{	
		benifitshopPicture = new Image(510,225);
	    benifitshopPicture.src = "images/benifitshop.jpg";

		householdPicture = new Image(510,225);
		householdPicture.src = "images/household.jpg";
		
        toyPicture = new Image(510,225);
		toyPicture.src = "images/toy.jpg";

        etcPicture = new Image(510,225);
		etcPicture.src = "images/etc.jpg";
        
		treasures_clothesPicture = new Image(510,225);
		treasures_clothesPicture.src = "images/treasures_clothes.jpg";
		
		}

//placeholders if browser has no javascript
	else
		{
		benifitshopPicture = "";
                householdPicture  = "";
                toyPicture = "";
                etcPicture = "";
                treasures_clothes = "";    
		}
		
		
//function for changing images
function changePicture(picName,imgName)
{
		if (document.images)
		{   
			//detects image object and change parameters
			imgOn=eval (imgName + ".src");
			
			//takes image name and adds .src so script can find location
			document[picName].src= imgOn;
	        }
}
		
//end changes pictures with each text with mouse over
//***************************************************