$(document).ready(function(){

//Larger thumbnail preview 

$("ul.thumb li").hover(function() {
	$(this).css({'z-index' : '10'});
		$(this).find('div.bg').addClass("hover").stop()
		.animate({
			marginTop: '-90px', 
			marginLeft: '-90px', 
			top: '50%', 
			left: '50%', 
			width: '174px', 
			height: '174px',
			padding: '5px' ,
			cursor: 'pointer'

		}, 400);
		$(this).find('div.caption').stop(false,true).fadeIn(300);

	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('div.bg').removeClass("hover").stop()
		.animate({
			marginTop: '20px', 
			marginLeft: '25px',
			top: '0', 
			left: '0', 
			width: '140px', 
			height: '100px', 
			padding: '5px' ,
			cursor: 'pointer'
		}, 400);
		$(this).find('div.caption').stop(false,true).fadeOut(200);

	
	
	


});




 
});

