$(document).ready(
	function() {

		var isIE6 = ($.browser.msie && parseInt($.browser.version.substr(0,1)) < 7);
		
		var oList = $(".resort-menu li a");

		oList.each( function(index, el){

			var oEl = $(el);

			oEl.hover(function() {
				if ( !isIE6 ) {
					$(this).animate({ 
						height: '292px'
					}, 120 );
				} else {
					$(this).css("height", "292px");
				}
				
				$(".resort-menu-img div.on").removeClass("on");
				var oNewOn = $("#" + oEl.attr("id") + "-img");
				oNewOn.css("opacity", 0.15);
				oNewOn.addClass("on");
				oNewOn.animate({ 
					opacity: 1
				}, 400 );
			}, 
			function() {
				if ( !isIE6 ) {
					$(this).animate({ 
						height: '83px'
					}, 120 );
				} else {
					$(this).css("height", "83px");
				}

			});
		});
	}
);