      var arrImages = new Array();
	  if (document.createElement) {
		  arrImages[0] = document.createElement('image');
		  arrImages[0].setAttribute('src',"/assets/layout/home.jpg");
		  arrImages[1] = document.createElement('image');
		  arrImages[1].setAttribute('src',"/assets/layout/home_on.jpg");
		  
		  arrImages[2] = document.createElement('image');
		  arrImages[2].setAttribute('src',"/assets/layout/earrings.jpg");
		  arrImages[3] = document.createElement('image');
		  arrImages[3].setAttribute('src',"/assets/layout/earrings_on.jpg");
		  
		  arrImages[4] = document.createElement('image');
		  arrImages[4].setAttribute('src',"/assets/layout/rings.jpg");
		  arrImages[5] = document.createElement('image');
		  arrImages[5].setAttribute('src',"/assets/layout/rings_on.jpg");
		  
		  arrImages[6] = document.createElement('image');
		  arrImages[6].setAttribute('src',"/assets/layout/bracelets.jpg");
		  arrImages[7] = document.createElement('image');
		  arrImages[7].setAttribute('src',"/assets/layout/bracelets_on.jpg");
		  
		  arrImages[8] = document.createElement('image');
		  arrImages[8].setAttribute('src',"/assets/layout/pins.jpg");
		  arrImages[9] = document.createElement('image');
		  arrImages[9].setAttribute('src',"/assets/layout/pins_on.jpg");
		  
		  arrImages[10] = document.createElement('image');
		  arrImages[10].setAttribute('src',"/assets/layout/schedule.jpg");
		  arrImages[11] = document.createElement('image');
		  arrImages[11].setAttribute('src',"/assets/layout/schedule_on.jpg");
		  
		  arrImages[12] = document.createElement('image');
		  arrImages[12].setAttribute('src',"/assets/layout/about.jpg");
		  arrImages[13] = document.createElement('image');
		  arrImages[13].setAttribute('src',"/assets/layout/about_on.jpg");
	  }
	  
	  function setUpRollovers() {
	  
	    if (!document.getElementsByTagName ||
		    !document.getElementById)
		    return;
		
		//get all list items that will contain links 
		var all_links = document.getElementsByTagName('a');

		for( var i = 0; i < all_links.length; i++ ) 
		{
		
		  var theLink = all_links[i];
		  
					  if ( theLink.className &&
						  (' ' + theLink.className + ' ' ).indexOf(' rollover ') != -1 )
					  {
						 
							 addEvent(theLink,'mouseover',mouseover,false);
							 addEvent(theLink,'mouseout',mouseout,false);
							   
					  }  
			 
		
		}//var i = 0; i < all_links.length; i++
		
	  }//eof
	  
	  //mouseover and mouseout cover rollovers for the top navigation bar
	  function mouseover(e) {
	   
	    var target = findTarget(e,'a');
          //alert(target);
		if(!target) return;

		//the only child of the a tag will be an image
		var Tag = target.firstChild;
 
 
		//look for an img src of 'somthing.ext' and replace the img src attribute with 'something_on.ext'
		 /*modified - Josh Tischer
		 had to swap out a .png for _on.jpg
		 - IE uses the fixpng.js file to change the .png file to a background image in a style of a SPAN tag
		 */
		if(   Tag.nodeName   == "IMG" )
		{
		 Tag.src =  Tag.src.replace(/(\.[^.]+)$/,'_on.jpg');
		}
	  }//oef
	  
	   function mouseout(e) {
	   
	    var target = findTarget(e,'a');
		if(!target) return;
		
		//the only child of the a tag will be an image
		var  Tag = target.childNodes[0];
		
		//look for an img src of 'somthing_on.ext' and replace the img src attribute with 'something.ext'
 
		 /*modified - Josh Tischer
		 had to swap out a .png for _on.jpg
		 - IE uses the fixpng.js file to change the .png file to a background image in a style of a SPAN tag
		 */
		if(   Tag.nodeName   == "IMG" )
		{
		   Tag.src = Tag.src.replace(/_on(\.[^.]+)$/,'.jpg');
		}
	  }//oef
	  
	   
	  // load the rollovers event handler
	  addEvent(window,'load',setUpRollovers,false);