$(document).ready(function() {	
	$("#text_block").scrollLeft(0);
	
	$('#current_photo a').fancybox({	
		'showCloseButton' : false,	
		'hideOnContentClick' : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	$(".gallery_item").mouseover(function() {
		$(this).stop().animate({backgroundPosition: "0% 100%"},550);
		$(this).children().stop().fadeTo(550,"0.5");
	});	
	$(".gallery_item").mouseout(function() {
		$(this).stop().animate({backgroundPosition: "0% 0%"},550);
		$(this).children().stop().fadeTo(550,"1.0");
	});
	
	$("a[href=#home]").parent().removeClass();
	$("a[href=#home]").parent().addClass("menu_item_selected");
	
	// Background trick
	
	 $("#body-background").ezBgResize();
});
