$(document).ready(function(){ 
	$('#content').minmax();
			
	$('.galleryhover').hover(function(event){
		var id = $(this).attr('rel');
		$(this).parent().css({zIndex: 3});
		$('#'+id).show();
		$('#'+id).ifixpng();
		
	},function(){
		var id = $(this).attr('rel');
		$(this).parent().css({zIndex: 0});
		$('#'+id).hide();
	});
	
	$('.galleryhover').click(function(){
		window.location = $(this).parent().children('a').attr('href');
	});
	
	if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 7) {
		$.ifixpng('peterpan/assets/clear.gif');
		setTimeout("$('#content, #header, #footer, img[@src$=.png]').ifixpng()", 500);
	}
	
	$('.infoitem').each(function(){
		$(this).css('cursor', 'pointer');		
	});
	
	$('.infoitem').click(function(){
		window.location = $(this).attr('rel');
	});
	
	$('#sponsors').hover(function(event){
		$('#sponsors').attr('src', '/peterpan/assets/sponsoren_mo.gif');
	}, function() {
		$('#sponsors').attr('src', '/peterpan/assets/sponsoren.gif');
	});
});


