$(document).ready(function(){

	$(".bwThumb").hover(
		function(){
			$(this).find(".thumb").fadeOut(300);
		},
		function(){
			$(this).find(".thumb").fadeIn(300);
		}
	);
	$(".bwThumb").each(function(i){
		$(this).delay(500+i*50).animate({
			left: "-=107px",
			right: "-=107px",
			top: "-=48px",
			bottom: "-=48px"
		},300,function(){
			$(this).find("img").addClass("loaded");
		})
	});
	$("nav li").each(function(i){
		$(this).delay(200+i*80).fadeIn(100);	
	});
});
