jQuery.noConflict();

jQuery(document).ready(function(){
	
	jQuery("h1").wrap('<div class="h1-container"></div>');
	
	jQuery("#nav_14623 a").hover(
		function () {
			jQuery(this).parent().addClass('hovered');
		}, 
		function () {
			jQuery(this).parent().removeClass('hovered');
		}
	);
	
	initFooter();
	
	jQuery('#content img:first-child').load(function() {
		imgHeight = jQuery(this).height();
		if (imgHeight > jQuery('#content').height()) jQuery('#content').height(imgHeight);
	});	
	
	jQuery(window).resize(function() {
		initFooter();
	});
	
});

function initFooter()
{
	boxHeight = jQuery(window).height() - jQuery('#footer').height() - jQuery('#header').height();
	jQuery('#content').height('auto'); 
	if (jQuery('#content').height() < boxHeight) jQuery('#content').height(boxHeight);
}
