<!--
//**********************************************************************
//Developed by: Abdul Hafeez
//Dated: 13 June, 2001

// Creatings Image Objects
//**********************************************************************
//Size of Navigation Images
var hSize = "145";
var vSize = "19";
var object=new Array();
object['home']= new objectdata("images/menu_home_on.gif","images/menu_home_off.gif");
object['services']= new objectdata("images/menu_services_on.gif","images/menu_services_off.gif");
object['aboutus']= new objectdata("images/menu_aboutus_on.html","images/menu_aboutus_off.html");
object['portfolio']= new objectdata("images/menu_portfolio_on.html","images/menu_portfolio_off.html");
object['tips']= new objectdata("images/menu_10tips_on.html","images/menu_10tips_off.html");
object['contactus']= new objectdata("images/menu_contactus_on.gif","images/menu_contactus_off.gif");

//**********************************************************************
function objectdata(replaceImg,restoreImg){                
     this.repImg=new Image(hSize,vSize);
     this.repImg.src=replaceImg;
     this.resImg=new Image(hSize,vSize);
     this.resImg.src=restoreImg;  
}

//Replace Image.
//**********************************************************************
function ReplaceImg(name){
	document[name].src=object[name].repImg.src;
} 

//Restore Image.
//**********************************************************************
function RestoreImg(name){
	document[name].src=object[name].resImg.src;
} 
//**********************************************************************
function displayit (location) {
	  displayWindow = window.open(location,'','toolbar=no,location=no,status=yes,menubar=now,scrollbars=yes,resizable=yes,width=400,height=300');
	 }

//**********************************************************************
// End of JavaScript -->
