/* ====================================================
Menu Current page highlight
==================================================== */

function hidedivs() {
	if (document.getElementById('bcontent'))
	{
	document.getElementById('broller').style.display = "none";
	document.getElementById('bvenetian').style.display = "none";
	document.getElementById('bvertical').style.display = "none";
	document.getElementById('bpleated').style.display = "none";
	document.getElementById('broman').style.display = "none";
	document.getElementById('bspeciality').style.display = "none";
	}
}

function GetcurrentPage() {  

	var anchors = document.getElementsByTagName("a");  
	var thisPage = location.href;  

	for (var i=0; i<anchors.length; i++) 
	{   
		var anchor = anchors[i];  

		thisHREF = anchor.getAttribute("href");  

		var location_page = location.protocol + "//" + location.hostname + thisHREF;

		if((thisHREF == thisPage) || (location_page == thisPage))
		{  
			anchors.item(i).parentNode.className ="current";
			return;  
		}  
	}  

}  
GetcurrentPage();
hidedivs();







