if (document.images) {
	n1on = new Image();    n1on.src = "images/nav-home-on.gif";
	n2on = new Image();    n2on.src = "images/nav-about-on.gif";
	n3on = new Image();    n3on.src = "images/nav-businessmen-on.gif";
	n4on = new Image();    n4on.src = "images/nav-products-on.gif";
	n5on = new Image();    n5on.src = "images/nav-addressbook-on.gif";
	n6on = new Image();    n6on.src = "images/nav-blog-on.gif";
}

function imgOn(imgName) {
	if (document.images) {
		oSrc=document[imgName].src;
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgOff(imgName) {
	if(oSrc){
		document[imgName].src = oSrc;
	}
}
function submitForm(formName,link,page) {
	var f = document.forms[formName];
	
	if(link.attributes['href'].value && link.attributes['href'].value != '#')
		f.attributes['action'].value = link.attributes['href'].value;
	f.elements['data[page]'].value = page;
	f.submit();
	return false;
}