// JavaScript Document

$(document).ready(function () {
	//$("#nav ul").css("visibility", "hidden");
	
	var height1 = $("#nav1").height() + 12;
	var height2 = $("#nav2").height() + 12;
	var height3 = $("#nav3").height() + 12;
	
	//alert("h1:"+$("#nav1").height()+" h2:"+$("#nav2").height()+" h3:"+$("#nav3").height());
	
	$("#nav1").height(21);
	$("#nav2").height(21);
	$("#nav3").height(21);
	
	$("#nav ul").css("visibility", "visible");
	
	$("#nav1").mouseover(function () {
		$(this).stop().animate({height:height1},{queue:false, duration:300});
	});
	$("#nav1").mouseout(function () {
		$(this).stop().animate({height:'21px'},{queue:false, duration:300});
	});
	
	$("#nav2").mouseover(function () {
		$(this).stop().animate({height:height2},{queue:false, duration:300});
	});
	$("#nav2").mouseout(function () {
		$(this).stop().animate({height:'21px'},{queue:false, duration:300});
	});
	
	$("#nav3").mouseover(function () {
		$(this).stop().animate({height:height3},{queue:false, duration:300});
	});
	$("#nav3").mouseout(function () {
		$(this).stop().animate({height:'21px'},{queue:false, duration:300});
	});
	
});