$(window).load(function() {
	function hover(target){
		$(target).hover(
			function () {
				$(target).animate({"height": "50px"}, 200);
			},
			function () {
				$(target).animate({"height": "40px"}, 200);
			}
		);
	}
	hover(".about_rollover");
	hover(".stationary_rollover");
	hover(".gifts_rollover");
	hover(".wrapping_rollover");
	hover(".travel_rollover");
	hover(".baby_rollover");
	
	if($(".align_bottom").height() > 280){
		$(".right").css({
				'min-height' : $(".align_bottom").height(),
				'height' : $(".align_bottom").height()
		});
	}
});

//MODAL STUFF
function modalOpen (dialog) {
	dialog.overlay.fadeIn(350, function () {
		dialog.container.show()
		dialog.data.fadeIn('slow');
	});
}

function modalClose (dialog) {
	dialog.data.fadeOut('fast', function () {
		dialog.container.hide()
		dialog.overlay.fadeOut('fast', function () {
			$.modal.close();
		});
	});
}