// JavaScript Document

//document.onLoad = alert("working");

function menucheck() {
	//alert("checking");
	var thePath=window.location.pathname; 
	//var theSub=thePath.substring(thePath.lastIndexOf('/'+1));
	//var theSub=thePath.substring(thePath.indexOf('html/', 10)+1, thePath.lastIndexOf('/')+1);//not working yet
	if ( thePath.match("/bedrooms/") ) {
		
		//alert("beds");
		document.write("<ul><li style=\"padding-right:15px;background:url(\'../images/menu_gap.gif\') right bottom no-repeat;\"><a href=\"javascript:void(0);\" onMouseover=\"cssdropdown.dropit(this,event,\'dropmenu2\')\" style=\"padding-right:20px;background:url(\'../images/menu_arrow.gif\') right no-repeat;color:#444;\">Bedrooms</a></li><li><a href=\"../bedrooms/index.htm\">About us</a></li></li><li><a href=\"../bedrooms/ranges.htm\">Our bedroom ranges</a></li><li><a href=\"../contact.htm\">Contact Us</a></li></ul>");
		
	} else if ( thePath.match("/bathrooms/") ) {
		
		//alert("bath");
		document.write("<ul><li style=\"padding-right:15px;background:url(\'../images/menu_gap.gif\') right bottom no-repeat;\"><a href=\"javascript:void(0);\" onMouseover=\"cssdropdown.dropit(this,event,\'dropmenu3\')\" style=\"padding-right:20px;background:url(\'../images/menu_arrow.gif\') right no-repeat;color:#444;\">Bathrooms</a></li><li><a href=\"../bathrooms/index.htm\">About us</a></li><li><a href=\"../bathrooms/ranges.htm\">Our bathroom ranges</a></li><li><a href=\"../contact.htm\">Contact Us</a></li></ul>");		
		
	} else if ( thePath.match("/kitchens/") ) {
		
		//alert("kitchen");
		document.write("<ul><li style=\"padding-right:15px;background:url(\'../images/menu_gap.gif\') right bottom no-repeat;\"><a href=\"javascript:void(0);\" onMouseover=\"cssdropdown.dropit(this,event,\'dropmenu1\')\" style=\"padding-right:20px;background:url(\'../images/menu_arrow.gif\') right no-repeat;color:#444;\">Kitchens</a></li><li><a href=\"../kitchens/index.htm\">About us</a></li><li><a href=\"../kitchens/waywork.htm\">The way we work</a></li><li><a href=\"../kitchens/ranges.htm\">Our kitchen ranges</a></li><li><a href=\"../contact.htm\">Contact Us</a></li></ul>");
				
	}
	
}