jQuery(document).ready(function() {	
	// HANDLE SUBNAVIGATION
	jQuery('#navigation').find('li').hover(function() {
		jQuery(this).find('ul.subnav').fadeIn();
	}, function() {
		jQuery(this).find('ul.subnav').fadeOut();
	})
});

function CheckPageHeight() {
	if (jQuery('#content_wrapper_top').height() > 830) {
		jQuery('#content_wrapper_top').wrap('<div id="content_wrapper_btm" />');
	}
}
