jQuery(document).ready(
	function(){
		// Add event handler for menu drop downs for mouse events
		jQuery(".primary-nav > li").bind("mouseenter", function(e) { jQuery(this).children("ul").fadeIn(100); } );
		jQuery(".primary-nav > li").bind("mouseleave", function(e) { jQuery(this).children("ul").fadeOut(200); } );
		/*
		content = jQuery("#content").offset();
		footer = jQuery("#footer").offset();
		height = footer.top - content.top - 10;
		if (height > jQuery("#content").height() )
			jQuery("#content").height(height);
		*/
	}
);


