 // initialize variables

d=document;

if (d.images){

  menu_serviceson = new Image();
  menu_serviceson.src = "images/menu_services_on.gif";
  menu_servicesoff = new Image();
  menu_servicesoff.src = "images/menu_services.gif";  

  menu_portfolioon = new Image();
  menu_portfolioon.src = "images/menu_portfolio_on.gif";
  menu_portfoliooff = new Image();
  menu_portfoliooff.src = "images/menu_portfolio.gif";  

  menu_teamon = new Image();
  menu_teamon.src = "images/menu_team_on.gif";
  menu_teamoff = new Image();
  menu_teamoff.src = "images/menu_team.gif";  

  menu_clientson = new Image();
  menu_clientson.src = "images/menu_clients_on.gif";
  menu_clientsoff = new Image();
  menu_clientsoff.src = "images/menu_clients.gif";  

  menu_partnerson = new Image();
  menu_partnerson.src = "images/menu_partners_on.gif";
  menu_partnersoff = new Image();
  menu_partnersoff.src = "images/menu_partners.gif";  

  menu_blogon = new Image();
  menu_blogon.src = "images/menu_blog_on.gif";
  menu_blogoff = new Image();
  menu_blogoff.src = "images/menu_blog.gif";  
    
  menu_contacton = new Image();
  menu_contacton.src = "images/menu_contact_on.gif";
  menu_contactoff = new Image();
  menu_contactoff.src = "images/menu_contact.gif";  
  
  menu_sub_philosophyon = new Image();
  menu_sub_philosophyon.src = "images/arrow_blue.gif";
  menu_sub_philosophyoff = new Image();
  menu_sub_philosophyoff.src = "images/clear.gif";  
  
  menu_sub_residentialon = new Image();
  menu_sub_residentialon.src = "images/arrow_blue.gif";
  menu_sub_residentialoff = new Image();
  menu_sub_residentialoff.src = "images/clear.gif";  
  
  menu_sub_commercialon = new Image();
  menu_sub_commercialon.src = "images/arrow_blue.gif";
  menu_sub_commercialoff = new Image();
  menu_sub_commercialoff.src = "images/clear.gif";  

  menu_sub_kitchenson = new Image();
  menu_sub_kitchenson.src = "images/arrow_blue.gif";
  menu_sub_kitchensoff = new Image();
  menu_sub_kitchensoff.src = "images/clear.gif";  
  
  menu_sub_bathroomson = new Image();
  menu_sub_bathroomson.src = "images/arrow_blue.gif";
  menu_sub_bathroomsoff = new Image();
  menu_sub_bathroomsoff.src = "images/clear.gif";  
  
  menu_sub_great_roomson = new Image();
  menu_sub_great_roomson.src = "images/arrow_blue.gif";
  menu_sub_great_roomsoff = new Image();
  menu_sub_great_roomsoff.src = "images/clear.gif";  
  
  menu_sub_bedroomson = new Image();
  menu_sub_bedroomson.src = "images/arrow_blue.gif";
  menu_sub_bedroomsoff = new Image();
  menu_sub_bedroomsoff.src = "images/clear.gif"; 
  
  menu_sub_wine_roomson = new Image();
  menu_sub_wine_roomson.src = "images/arrow_blue.gif";
  menu_sub_wine_roomsoff = new Image();
  menu_sub_wine_roomsoff.src = "images/clear.gif";     
  
  menu_sub_lower_levelson = new Image();
  menu_sub_lower_levelson.src = "images/arrow_blue.gif";
  menu_sub_lower_levelsoff = new Image();
  menu_sub_lower_levelsoff.src = "images/clear.gif";   
  
  menu_sub_exteriorson = new Image();
  menu_sub_exteriorson.src = "images/arrow_blue.gif";
  menu_sub_exteriorsoff = new Image();
  menu_sub_exteriorsoff.src = "images/clear.gif";   

  menu_sub_projectson = new Image();
  menu_sub_projectson.src = "images/arrow_blue.gif";
  menu_sub_projectsoff = new Image();
  menu_sub_projectsoff.src = "images/clear.gif";  
  
  menu_sub_testimonialson = new Image();
  menu_sub_testimonialson.src = "images/arrow_blue.gif";
  menu_sub_testimonialsoff = new Image();
  menu_sub_testimonialsoff.src = "images/clear.gif";  

  menu_sub_alexaon = new Image();
  menu_sub_alexaon.src = "images/arrow_blue.gif";
  menu_sub_alexaoff = new Image();
  menu_sub_alexaoff.src = "images/clear.gif";  
  
  menu_sub_nancyon = new Image();
  menu_sub_nancyon.src = "images/arrow_blue.gif";
  menu_sub_nancyoff = new Image();
  menu_sub_nancyoff.src = "images/clear.gif";  
  
  menu_sub_missyon = new Image();
  menu_sub_missyon.src = "images/arrow_blue.gif";
  menu_sub_missyoff = new Image();
  menu_sub_missyoff.src = "images/clear.gif";  
  
  menu_sub_katieon = new Image();
  menu_sub_katieon.src = "images/arrow_blue.gif";
  menu_sub_katieoff = new Image();
  menu_sub_katieoff.src = "images/clear.gif";  

}
				
function changeImages(x,roll) {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
    				document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
		}		
  	}
}	

function menuRoll(nav,action) {
	var menu = 'menu_'+nav;
	var menu_act = 'menu_'+nav+action;
	changeImages(menu,menu_act);
}

// window pop
function popWindow(url,name,width,height,top,left) {
	var popwin = window.open(url,name,'width='+width+',height='+height+',top='+top+',left='+left+',location=0,address=0,resizable=1,toolbar=0,scrollbars=0');
	window.name ='main';
	popwin.focus();
	return popwin;
}

function popwin(url,name,width,height,top,left) {
	winPop = popWindow(url,name,width,height,top,left);
}


