$().ready(
		function showWidth(h,he,he2,he3) {
					
			var he = $('#centerContentLeft').height();
			var he2 = $('#catalogHeader').height();		
			var h = $('#catalogJobs').height();
			var h = h + $('#mapCanvasSearch').height();
			
			$('#catalogHeader').css("margin-top", h + 240);
			$('#centerContentLeft').css("min-height", he + he2 + 30);
			
		}
	);
	


$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("h2.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
	});

});

$(document).ready(function(){
	
	$(".helpMeBox").hover(function(){
		$("#help").css('display','block')
	}, 
	 function () {
			$("#help").css('display','none')
	}
	)
	
});







