		if(document.images)
		{
			//Add your images here
			
			intro_2_on = new Image();
			intro_2_on.src = "../../img/square_images/our_work_box_6.gif";
			
			intro_2_off = new Image();
			intro_2_off.src = "../../img/square_images/our_work_box_6.gif";
			
			web_2_on = new Image();
			web_2_on.src = "../../img/square_images/our_work_box_1.gif";
			
			web_2_off = new Image();
			web_2_off.src = "../../img/square_images/our_work_box_1.gif";
			
			cdrom_2_on = new Image();
			cdrom_2_on.src = "../../img/square_images/our_work_box_2.gif";
			
			cdrom_2_off = new Image();
			cdrom_2_off.src = "../../img/square_images/our_work_box_2.gif";
			
			literature_2_on = new Image();
			literature_2_on.src = "../../img/square_images/our_work_box_3.gif";
			
			literature_2_off = new Image();
			literature_2_off.src = "../../img/square_images/our_work_box_3.gif";
			
			promotion_2_on = new Image();
			promotion_2_on.src = "../../img/square_images/our_work_box_4.gif";
			
			promotion_2_off = new Image();
			promotion_2_off.src = "../../img/square_images/our_work_box_4.gif";
			
			identity_2_on = new Image();
			identity_2_on.src = "../../img/square_images/our_work_box_5.gif";
			
			identity_2_off = new Image();
			identity_2_off.src = "../../img/square_images/our_work_box_5.gif";
			
			creative_corner_2_on = new Image();
			creative_corner_2_on.src = "../../img/square_images/our_work_box_creative_on.gif";
			
			creative_corner_2_off = new Image();
			creative_corner_2_off.src = "../../img/square_images/our_work_box_creative.gif";
			
			
			web_on = new Image();
			web_on.src = "../../img/navigation/services/services_2_on.gif";
			
			web_off = new Image();
			web_off.src = "../../img/navigation/services/services_2.gif";
			
			cdrom_on = new Image();
			cdrom_on.src = "../../img/navigation/services/services_4_on.gif";
			
			cdrom_off = new Image();
			cdrom_off.src = "../../img/navigation/services/services_4.gif";
			
			literature_on = new Image();
			literature_on.src = "../../img/navigation/services/services_6_on.gif";
			
			literature_off = new Image();
			literature_off.src = "../../img/navigation/services/services_6.gif";
			
			promotion_on = new Image();
			promotion_on.src = "../../img/navigation/services/services_8_on.gif";
			
			promotion_off = new Image();
			promotion_off.src = "../../img/navigation/services/services_8.gif";
			
			identity_on = new Image();
			identity_on.src = "../../img/navigation/services/services_10_on.gif";
			
			identity_off = new Image();
			identity_off.src = "../../img/navigation/services/services_10.gif";
			
			intro_on = new Image();
			intro_on.src = "../../img/navigation/services/services_12_on.gif";
			
			intro_off = new Image();
			intro_off.src = "../../img/navigation/services/services_12.gif";
			
			// images added by ed	
							
			about_us_on = new Image();
			about_us_on.src = "../../img/navigation/main_menu/menu_2_on.gif";
			
			about_us_off = new Image();
			about_us_off.src = "../../img/navigation/main_menu/menu_2.gif";
			
			our_work_on = new Image();
			our_work_on.src = "../../img/navigation/main_menu/menu_4_on.gif";
			
			our_work_off = new Image();
			our_work_off.src = "../../img/navigation/main_menu/menu_4.gif";
			
			services_on = new Image();
			services_on.src = "../../img/navigation/main_menu/menu_6_on.gif";
			
			services_off = new Image();
			services_off.src = "../../img/navigation/main_menu/menu_6.gif";
			
			contact_on = new Image();
			contact_on.src = "../../img/navigation/main_menu/menu_8_on.gif";
			
			contact_off = new Image();
			contact_off.src = "../../img/navigation/main_menu/menu_8.gif";
					
			//End of add images
		}
		
		
			//RollOn Function
		function imgOn(imgName)
		{
			if(document.images)
			{
				document[imgName].src = eval(imgName + "_on.src");
			}
		}
		
		function imgOff(imgName)
		{
			if(document.images)
			{
				document[imgName].src = eval(imgName + "_off.src");
			}
		}
		function bigImgOn(imgName)
		{
			if(document.images)
			{
				if(document['bigpic'].src!=eval(imgName + "_off.src"))
				{
					document['bigpic'].src = eval(imgName + "_off.src");
				}
			}
		}
		function bigImgOff()
		{
			if(document.images)
			{
				//document['bigpic'].src = "../../img/our_work_box_6.gif";
			}
		}