jQuery(document).ready(function() {

	$('.nav > li:last').addClass('last');
	
	$('.nav > li').hover( function() {
		$(this).children('a').addClass('hover');
		$(this).children('ul').css('display', 'block');
	}, function() {
		$(this).children('a').removeClass('hover');
		$(this).children('ul').css('display', 'none');
	});
	
});

if ($.browser.msie || $.browser.opera) {
	function equalHeight(group) {
		tallest = 0;
		group.each(function() {
			thisHeight = $(this).height();
			if(thisHeight > tallest) {
			tallest = thisHeight;
			}
		});
		group.height(tallest);
	}
	$(window).load(function() {
		equalHeight($('.content'));
		if ($.browser.msie && (($.browser.version == 7)||($.browser.version == 6))) {
			$('.reservations').css('height', $('.content').height() - 303);
		}
	});
}

var params = {
  wmode: "transparent"
};
//swfobject.embedSWF("gallery.swf", "gallery_flash", "534", "380", "9.0.0", "expressInstall.swf", params);
