
$(document).ready(function() {
	$("#menu li").hover(
		function() {
			$(this).children("a").css("color", "#fff");
		},
		function() {
			$(this).children("a").css("color", "#060");
		}
	);
	
	$(window).resize(fixMenuHeight());
	
	fixMenuHeight();
});

function fixMenuHeight() {
	//var pageHeight = $("#page").outerHeight(true);
	var contentHeight = 0;
	if($("#contentFullWidth").length > 0)
		contentHeight = $("#contentFullWidth").outerHeight(true);
	else
		contentHeight = $("#content").outerHeight(true);
	var slideshowHeight = $("#slideshow").outerHeight(true);
	var contactDetailsHeight = $("#contactDetails").outerHeight(true);
	//var menuHeight = $("#menu").height();
	//alert("Page: " + pageHeight + "; Content: " + contentHeight + "; Slideshow: " + slideshowHeight +  "; Contact Details: " + contactDetailsHeight + "; Menu: " + menuHeight);
	
	$("#menu").height(contentHeight + slideshowHeight + contactDetailsHeight);
}

