// JavaScript Document

$(function(){
		  // SLidedown Menus
		   $("#menuList ul .page_item").hover(
											 
											  function () { $(this).children("ul").slideDown('fast'); },
											  function () {$(this).children("ul").slideUp('fast');}
											  
											  );
		   
		   //Equal Hrighy
		   var maxHeight = 0;
		   var leftW = $("#leftCol").height();
		   var rightW = $("#rightCol").height();
		   
		   if(maxHeight<leftW)
		   {
			   maxHeight =leftW;
		   }
		   if(maxHeight<rightW)
		   {
			   maxHeight = rightW;
		   }
		   
		   $("#leftCol").css("height",maxHeight+"px");
		   $("#rightCol").css("height",maxHeight+"px");
		   
		   //Equal Width for IE
		   
		   $("#topBar").css("width", $("#menuList ul").width()+"px");
		   //alert("maxHeight = "+maxHeight);
		   
		   });