// JavaScript Document
function $(obj){
	return document.getElementById(obj);
}
function ShowNav(obj){
	$(obj).style.color="#DC0000";
	$(obj).style.backgroundImage="url(img/navhover.jpg)";
	$(obj).style.backgroundPosition="center";
	$(obj).style.backgroundRepeat="no-repeat";
}

function ShowSubNav(obj,w,iShow){
	var sw=document.body.clientWidth;
	
	if(iShow==1){
		$(obj).style.display='block';
		if(sw>1024){
			$(obj).style.left="200px";
		}
		else{
			$(obj).style.left="50px";	
		}
		$(obj).style.width=w+"px";
	//	$(obj).style.position="absolute";
//		$(obj).style.top="30";
		$(obj).style.left="0px";
		
		
	}else{
		$(obj).style.display='none';
		}
}

