jQuery(function() {
	
	jQuery(window).load(function(){
		if(jQuery("#secondary").height() > jQuery("#primary").height()) {
			jQuery("#primary").css("height", jQuery("#secondary").height());
		}
	});
	
	jQuery("#private-charter").mouseover(function() {
		jQuery('#private-charter').stop().animate({
			top: "0px"
		}, 1200);
	});
	jQuery("#private-charter").mouseout(function() {
		jQuery('#private-charter').stop().animate({
			top: "440px"
		}, 1200);
	});
	jQuery("#overnight-cruise").mouseover(function() {
		jQuery('#overnight-cruise').stop().animate({
			top: "0px"
		}, 1200);
	});
	jQuery("#overnight-cruise").mouseout(function() {
		jQuery('#overnight-cruise').stop().animate({
			top: "440px"
		}, 1200);
	});

});
