<!-- menu variables -->
tablewidth = 720;
menutop = 110;
dualfuelrangesleft = 52;
gasrangesleft = 90;

cooktopleft = 26;
cooktop1left = 150;
cooktop2left = 150;

electriccooktopleft = 170;
//hoodsleft = 423;
gaswallovensleft = 423;
electricwallovensleft = 544;
bbqsleft = 600;

function hideAll()
{
	$(".menu2").hide();
}
function switchPage(from,to)
{
	hide(from);
	show(to);
}
function show(movlay,offset,issub)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='';
	x = parseInt(document.body.offsetWidth - tablewidth);
	x = x / 2 + offset;	
	if (issub){		
		myObj.style.left += offset + "px";
	} else if (movlay.indexOf('subcat_') == -1){
		myObj.style.left= x + "px";
		myObj.style.top = menutop + "px";	
	} else {
		myObj.style.left += "120px";		
	}
	//alert(window.screen.width);
}
function showFloating(movlay)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='';
	x = window.event.x;
	y = window.event.y - 250;
	myObj.style.left= x + "px";
	myObj.style.top= y + "px";
}
function hideit(movlay)
{
	func = "hide('" + movlay + "')"
	setTimeout(func,500);
}
function hide(movlay)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='none';
}
function popup(thepage,width,height)
{
	window.open(thepage,"previewwindow", 'menubar,resizable,scrollbars,dependent,status,width=' + width + ',height=' + height);
}
