var OverImages=new Array("../img/nav_home_over.gif", "../img/nav_aboutproduct_over.gif", "../img/nav_freedownload_over.gif", 
	"../img/nav_purchase_over.gif", "../img/nav_screenshots_over.gif", "../img/nav_documentation_over.gif", "../img/nav_contact_over.gif");
var NormalImages=new Array("../img/nav_home.gif", "../img/nav_aboutproduct.gif", "../img/nav_freedownload.gif", 
	"../img/nav_purchase.gif", "../img/nav_screenshots.gif", "../img/nav_documentation.gif", "../img/nav_contact.gif");
var StatusTexts=new Array("Home", "About WatermarkIt", "Free WatermarkIt download", 
	"WatermarkIt Screenshots", "Purchase WatermarkIt", "Product Documentation", "Contact Us");


function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages(obj, newsrc) {
	if (document.images && (preloadFlag == true) && obj) {
		{
			//obj.src = newsrc;
			//alert (obj.src);
			for (i=0; i<7; i++)
			{
				if (obj.src.indexOf(OverImages[i].substr(2)) != -1)
				{
					obj.src = NormalImages[i];
					window.status='';
					return true;
				}
				if (obj.src.indexOf(NormalImages[i].substr(2)) != -1)
				{
					obj.src = OverImages[i];
					window.status=StatusTexts[i];
					return true;
				}
			}
			
		}
	}
	return false;
}

var preloadFlag = false;
function preloadImages() {
	
	if (document.images) {
		for (i=0; i<7; i++)
			new_img = newImage(OverImages[i]);
		preloadFlag = true;
	}
}

function RightMenu()
{
    //document.write("<td class=\"right_main\" valign=\"top\" bgcolor=\"#FFFFFF\">");
	document.write("<table width=\"100%\" bgcolor=\"#eeeeee\">");
	
    	document.write("<tr><td class=\"login\" width=\"100%\"><br /><br />");
    	document.write("<b><font color=\"#2E7090\" style=\"font-size:15px;\">Free Download</font></b><br /><br />");
    	document.write("WatermarkIt version 1.2<br />");
    	document.write("File Size: 978 KBs<br />");
    	document.write("OS: Windows XP/2000/ME/98<br /><br />");
    	
    	document.write("<a href=\"../downloads/WatermarkItSetup.exe\"><img src=\"../img/download_now2.gif\" border=\"0\" alt=\"Download WatermarkIt\"></a><br /><br /><br />");
    	document.write("</td></tr>");
    	
    	document.write("<tr><td class=\"login\" width=\"100%\"><br />");
    	document.write("<br /><b><font color=\"#2E7090\" style=\"font-size:15px;\">Purchase</font></b><br /><br />");
    	document.write("Purchase WatermarkIt now for <br /><strong>only $19.95</strong> and remove <br />all software restrictions.<br />");
	document.write("<br />");
	document.write("<a href=\"../reg_direct.htm\"><img src=\"../img/purchase_now.gif\" border=\"0\" alt=\"Purchase WatermarkIt\"></a><br /><br /><br />");

    	document.write("</td></tr></table>");

    //document.write("</td>");
}