$(document).ready(function() {
			$("#nav div.wrap li").mouseover(function(event){			
				$(this).parents("div.wrap").find("div.nav-holder").html($(this).find("ul").html());
			});
			$("#nav li").mouseover(function(event){
				aPos = $(this).position();
				$(this).find("div.wrap").css('left',parseInt(aPos.left)-4+'px');
			});
			$("#nav li").mouseout(function(event){
				$(this).find("div.wrap").css('left',-2000+'px');
			});		
			PositionAction();			
		});
		
function PositionAction(){ 
	$("#rightcontent").css( { "height": parseInt($("#content").height()+45) + "px" } );

	if($("#rightcontent").height()>$("#content").height()){
		//$("#content").css({ "height": parseInt($("#right").height()) + "px" } );
	}
	
	var pos = $("#footerspacer").offset(); 
	$("#footerspacer").css( { "height": parseInt($("body").height()-pos.top) + "px" } );
}
window.onresize = function() {
   PositionAction();
}
