$(document).ready(function() {
	$("#navigation li").hoverIntent(
		function () {
			// Show the subnav div
		    $(this).find(".subnav").slideDown('fast').show();
		}, 
		function () {
			// Hide the subnav div
			$(this).find(".subnav").slideUp('fast').hide();
		}
	);
	
	if ($("#image-navigation").css("display") == "none") {
		$("#image_gallery .right").css({'height': '165px'});
	}
});
