//to apply hover at the menu items
function doHover(param, selPage,divId)
{
	//alert(param);
	//alert(selPage);
	//alert(divId);
	var obj = '', strMenu = '';
	obj = document.getElementById(divId);
	strMenu = 'common/images/'+selPage+'/menu_'+param+'_over.png';
	//alert(strMenu);
	obj.src = strMenu;
}

//to remove hover from the menu items
function removeHover(param,divId)
{
	//alert('common/images/'+param+'/menu_'+param+'.gif');
	document.getElementById(divId).src='common/images/'+param+'/menu_'+param+'.png';
	
}