
$().ready(function() {
	
	if ($(window).height() > ($('#main').outerHeight() + 91)) {
		extras = $('#main').outerHeight() - $('#main').height();
		//$('#main').height($(window).height() - 91 - extras);
		
	}
	
	if (!($.browser.msie && parseInt(jQuery.browser.version) < 8))
		$('#top-form').jqTransform();
	
	$('#menu > li').hover( 
			function() {
				$(this).addClass("hover2");
			},
			function() {
				$(this).removeClass("hover2");
			}
	);

	$('#jq1').jqm({
		onShow: function(hash) { 
			hash.w.fadeIn('fast').show(); 
		},
		onHide: function(hash) { 
			hash.w.fadeOut('fast', function(){ 
				hash.o.remove(); 
			}); 
		}
	});

});

