// JavaScript Document

//Procuct image switching for the index1 and index2 pages
if (document.images) 
{
	
	 // Set width and height of all images
	 var img_width=110;
	 var img_height=85;

	 // SET DEFAULT IMAGES FOR EACH FAMILY (onmouseout)    
	 inkjet_off     = new Image(img_width,img_height);
	 inkjet_off.src = "images/product/deskjet_6980.jpg";
	 
	 mfp_off     = new Image(img_width,img_height);
	 mfp_off.src = "images/prod-pda-new.jpg";
	 
	 laserjet_off     = new Image(img_width,img_height);
	 laserjet_off.src = "images/12c_new.jpg";

	 specialty_off		   = new Image(img_width,img_height);
	 specialty_off.src = "images/10s_new.jpg";
	 
	 supplies_off		   = new Image(img_width,img_height);
	 supplies_off.src = "images/50gs_new.jpg";
	 
	
	 
	 // PDA IMAGES
	 col_mfp_printer     = new Image(img_width,img_height);
	 col_mfp_printer.src = "images/hp-ipaq210-enterprise-handheld_new.jpg";

	 bw_mfp_printer     = new Image(img_width,img_height);
	 bw_mfp_printer.src = "images/product/bw_multifunction_printer_m2727.jpg";
	 
	 edgeline_printer     = new Image(img_width,img_height);
	 edgeline_printer.src = "images/product/edgeline_cm8000.jpg";
		 
	 // fINACIAL IMAGES
	 bw_laser_printer     = new Image(img_width,img_height);
	 bw_laser_printer.src = "images/f1902anew.jpg";
	 
	  km_laser_printer     = new Image(img_width,img_height);
	 km_laser_printer.src = "images/12p_new.jpg";
	 
	  mw_laser_printer     = new Image(img_width,img_height);
	 mw_laser_printer.src = "images/pic21997new.gif";
	 	 
	 //gRAPHING IMAGES
	 mobile_printer     = new Image(img_width,img_height);
	 mobile_printer.src = "images/f1900anew.jpg";
	 
	 specialty_photo     = new Image(img_width,img_height);
	 specialty_photo.src = "images/33snew.jpg";
	 
	 km_photo = new Image(img_width,img_height);
	 km_photo.src = "images/35snew.jpg";
	 
	 
	 large_format     = new Image(img_width,img_height);
	 large_format.src = "images/9s_new.jpg";
	 
	 ga_printers     = new Image(img_width,img_height);
	 ga_printers.src = "images/product/ga_printers_l65500.jpg";
	 
	  //supplies
	   lm_photo = new Image(img_width,img_height);
	 lm_photo.src = "images/9g_new.jpg";
	 
	  em_photo = new Image(img_width,img_height);
	 em_photo.src = "images/f1906anew.jpg";
	 
	  mm_photo = new Image(img_width,img_height);
	 mm_photo.src = "images/48gII_new.jpg";
}

// Change the image
function swap(imgName,picobj) 
{
	if (document.images) 
	{ 
		document.images[imgName].src= picobj.src;
	}
}