  $(document).ready(function() {
    $(".workImg a").hover(function(){
		$(this).find('img:first-child').css('display','block');
	},function(){
		$(this).find('img:first-child').css('display','none');
	});

	var k = 0;
	setInterval(function(){
	$($('.workList img.listImg')[k]).fadeIn("normal",function(){k++});
	}, 700);



/*	$('.wrap').masonry();
	
	$('.wrap img.listImg').css('display','block');
*/	
	//$('img.reflect').reflect({height: 0.3, opacity: 0.6});

    $(".lavaLampWithImage").lavaLamp({
        fx: "backout",
        speed: 700
    });


});

$(function(){
    $('.workListItem').flatHeights();
	var j = 0;
	setInterval(function(){
	$($('.workImg img.listImg')[j]).fadeIn("normal",function(){j++});
	}, 600);
});	


