//Procuct image switching for the index1 and index2 pages
if (document.images) {
	 // Set width and height of all images
	 var img_width=100;
	 var img_height=100;

	 // SET DEFAULT IMAGES FOR EACH SECTION (onmouseout)    
	 notebook_off     = new Image(img_width,img_height);
	 notebook_off.src = "/canada/products/images/smb_products/business_desktop.jpg";
	 
	 printing_off     = new Image(img_width,img_height);
	 printing_off.src = "/canada/products/images/smb_products/bw_laserjet.jpg";

	 desktop_off     = new Image(img_width,img_height);
	 desktop_off.src = "/canada/products/images/smb_products/business_desktop.jpg";
	 
	 fax_off     = new Image(img_width,img_height);
	 fax_off.src = "/canada/products/images/smb_products/scanner.jpg";

	 handheld_off     = new Image(img_width,img_height);
	 handheld_off.src = "/canada/products/images/smb_products/handheld.jpg";
	 
	 monitor_off     = new Image(img_width,img_height);
	 monitor_off.src = "/canada/products/images/smb_products/pavilion_monitor.jpg";
	 
	 camera_off = new Image (img_width,img_height);
	 camera_off.src = "/canada/products/images/smb_products/camera.jpg";


	 // PSG IMAGES
	 business_pc     = new Image(img_width,img_height);
	 business_pc.src = "/canada/products/images/smb_products/business_desktop.jpg";
	 
	 point_of_sale     = new Image(img_width,img_height);
	 point_of_sale.src = "/canada/products/images/smb_products/pos.jpg";

	 workstation     = new Image(img_width,img_height);
	 workstation.src = "/canada/products/images/smb_products/workstation.jpg";
	 
	 thin_client     = new Image(img_width,img_height);
	 thin_client.src = "/canada/products/images/smb_products/thin_client.jpg";

	 pavilion_monitor     = new Image(img_width,img_height);
	 pavilion_monitor.src = "/canada/products/images/smb_products/pavilion_monitor.jpg";

	 compaq_monitor     = new Image(img_width,img_height);
	 compaq_monitor.src = "/canada/products/images/smb_products/compaq_monitor.jpg";
	 
	 business_monitor     = new Image(img_width,img_height);
	 business_monitor.src = "/canada/products/images/smb_products/business_monitor.jpg"; 

	 ipaq     = new Image(img_width,img_height);
	 ipaq.src = "/canada/products/images/smb_products/handheld.jpg"; 

	 calculator     = new Image(img_width,img_height);
	 calculator.src = "/canada/products/images/smb_products/calculator.jpg"; 

	 ipaq_supplies     = new Image(img_width,img_height);
	 ipaq_supplies.src = "/canada/products/images/smb_products/ipaq_supplies.jpg"; 

	 desktop_opts     = new Image(img_width,img_height);
	 desktop_opts.src = "/canada/products/images/smb_products/desktop_opts.jpg";


	 // IPG IMAGES
	 multifunction     = new Image(img_width,img_height);
	 multifunction.src = "/canada/products/images/smb_products/multifunction.jpg";

	 color_laserjet     = new Image(img_width,img_height);
	 color_laserjet.src = "/canada/products/images/smb_products/color_laserjet.jpg";

	 bw_laserjet     = new Image(img_width,img_height);
	 bw_laserjet.src = "/canada/products/images/smb_products/bw_laserjet.jpg";
	 
	 color_inkjet     = new Image(img_width,img_height);
	 color_inkjet.src = "/canada/products/images/smb_products/color_inkjet.jpg";
	 
	 mobile_printer     = new Image(img_width,img_height);
	 mobile_printer.src = "/canada/products/images/smb_products/mobile_printer.jpg";

	 photo_printer     = new Image(img_width,img_height);
	 photo_printer.src = "/canada/products/images/smb_products/photo_printer.jpg";

	 large_format     = new Image(img_width,img_height);
	 large_format.src = "/canada/products/images/smb_products/designjet.jpg";

	 print_supplies     = new Image(img_width,img_height);
	 print_supplies.src = "/canada/products/images/smb_products/print_supplies.jpg";

	 fax     = new Image(img_width,img_height);
	 fax.src = "/canada/products/images/smb_products/fax.jpg";

	 scanner     = new Image(img_width,img_height);
	 scanner.src = "/canada/products/images/smb_products/scanner.jpg";

	 fax_mfp     = new Image(img_width,img_height);
	 fax_mfp.src = "/canada/products/images/smb_products/fax_multifunction.jpg";

	 camera     = new Image(img_width,img_height);
	 camera.src = "/canada/products/images/smb_products/camera.jpg";
	 
	 supplies     = new Image(img_width,img_height);
	 supplies.src = "/canada/products/images/smb_products/supplies.jpg";
	 
}
		
// Change the image
function changeImage(imgName,picobj) {
	if (document.images) { 
		document.images[imgName].src= picobj.src;
	}
}