// JavaScript Document


		img1on = new Image();
		img1on.src ="http://www.judysapps.com/images/nav_products_on.gif";
		img2on = new Image();
		img2on.src ="http://www.judysapps.com/images/nav_orders_on.gif";
		img3on = new Image();
		img3on.src ="http://www.judysapps.com/images/nav_downloads_on.gif";
		img4on = new Image();
		img4on.src ="http://www.judysapps.com/images/nav_support_on.gif";
		img5on = new Image();
		img5on.src ="http://www.judysapps.com/images/nav_contactus_on.gif";
		img6on = new Image();
		img6on.src ="http://www.judysapps.com/images/nav_home_on.gif";
		img7on = new Image();
		img7on.src ="images/downloadfree_2.jpg";
		img8on = new Image();
		img8on.src ="images/buynow_button_on.gif";
		img9on = new Image();
		img9on.src ="images/freetrial_button_on.png";
		
		
						
		img1off = new Image();
		img1off.src ="http://www.judysapps.com/images/nav_products.gif";
		img2off = new Image();
		img2off.src ="http://www.judysapps.com/images/nav_orders.gif";
		img3off = new Image();
		img3off.src ="http://www.judysapps.com/images/nav_downloads.gif";
		img4off = new Image();
		img4off.src ="http://www.judysapps.com/images/nav_support.gif";
		img5off = new Image();
		img5off.src ="http://www.judysapps.com/images/nav_contactus.gif";
		img6off = new Image();
		img6off.src ="http://www.judysapps.com/images/nav_home.gif";
		img7off = new Image();
		img7off.src ="images/downloadfree_1.jpg";	
		
		img8off = new Image();
		img8off.src ="images/buynow_button.gif";
		img9off = new Image();
		img9off.src ="images/freetrial_button.png";
		
		
				
function imgOn(imgName){
	document[imgName].src = eval(imgName + "on.src");
} 

function imgOff(imgName){
	document[imgName].src = eval(imgName + "off.src");
} 


