$(document).ready(function(){

//Larger thumbnail preview 

$("ul.thumb_main li").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-17px', 
			marginLeft: '-17px', 
			top: '0px', 
			left: '0px', 
			width: '195px', 
			height: '290px',
			padding: '0px' 
		}, 400);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0px', 
			marginLeft: '0px',
			top: '0px', 
			left: '0px', 
			width: '161px', 
			height: '239px', 
			padding: '0px'
		}, 400);
}); 
});
