$(document).ready(function() {
	$('#banner').bind('click', function () {
		$(this).animate({'opacity':'0'}, 1000);
	});
	
	// FUNKY RECIPE PAGE
	// THX TO BERT!
	$('div.image-wrapper a').each(function(){
		$(this).bind('mouseover', function () {
			$(this).css({'z-index':'150'});
			$(this).children('img.popup').css({'display':'block'});
		});
		$(this).bind('mouseout', function () {
			$(this).css({'z-index':'1'});
			$(this).children('img.popup').css({'display':'none'});
		});
	})
	
});
