$(document).ready(function() {  
	$(".png").ifixpng();
	
	$("ul li").hover(
		function(){
			$(this).children().filter("ul").css({display:"block"});
		},
		function(){
			$(this).children().filter("ul").css({display:"none"});
	});
	
	if ($('a[rel*=facebox]').length == 1) {
		$('a[rel*=facebox]').facebox();
	} else if ($('a[rel*=facebox]').length > 1) {
		$('a[rel*=facebox]').facebox({
			next_image    : 'inc/css/facebox/fast_forward.png',
			play_image    : 'inc/css/facebox/play.png',
			pause_image   : 'inc/css/facebox/pause.png',
			prev_image    : 'inc/css/facebox/rewind.png'
		});
	}
	
	$(window).resize(function() {
		resize();
		resize();
	});
	resize();
	resize();
});

function resize() {
	h = $(window).height() - 298;
	$("#content").css("min-height", h+"px");
}
