$('.ds_content').bind('load', function() {
	if(($('.nav_section').outerHeight() + $('.headertext_section').outerHeight() + $('.subnav_section').outerHeight() + $('.body_section').outerHeight() + $('.footer_section').outerHeight()) < $(window).height())
		$('.footer_section').css('position', 'fixed').css('bottom', 0);
		$('.nav0 ul li').bind('mouseover', function(event) {
			$(this).each(function(element) {
				if($(this).find('ul').length > 0)
				{
					$(this).find('a').addClass('mouseover');
					$(this).find('ul').css('left', $(this).closest('li').position().left + 'px').css('top', $(this).find('a').outerHeight() - 1 + 'px');
				}
		}).bind('mouseout', function(event) {
			$(this).each(function(element) {
				if($(this).find('ul').length > 0)
				{
					$(this).find('a').removeClass('mouseover');
				}
			});
		});
	});
});
