var params = {
  wmode: "transparent"
};
swfobject.embedSWF("gallery.swf", "gallery", "599", "481", "9.0.0", "expressInstall.swf", params);

jQuery(document).ready(function() {

	$('.menu > ul').ppMenuStretch();
	
	$('.menu > ul > li:last').addClass('last');
	
	$('.menu > ul > li > div').hover( function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});

});

jQuery(window).load(function() {
	
	var otherHeight = $('.top').height() + $('.menu').height() + $('.footer').height() + 35;
	var mainHeight = $(window).height() - otherHeight;
	if($('.content').height() < mainHeight){
		$('.content').css('height', mainHeight);
	}

});

jQuery(window).resize(function() {
	
	var otherHeight = $('.top').height() + $('.menu').height() + $('.footer').height() + 35;
	var mainHeight = $(window).height() - otherHeight;
	$('.content').css('height', 'auto');
	if($('.content').height() < mainHeight){
		$('.content').css('height', mainHeight);
	}

	$('.menu ul').ppMenuStretch();

});
