    jQuery.noConflict();
   jQuery(document).ready(function(){


 	 

//Larger thumbnail preview 



jQuery("ul.thumbs li").hover(function() {
	jQuery(this).css({'z-index' : '10'});
	jQuery(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '0px', 
			marginLeft: '0px', 
			top: '-50px', 
			left: '-30px', 
			width: '200px', 
			height: '200px',
			padding: '0px' 
		}, 200);
	
	} , function() {
	jQuery(this).css({'z-index' : '0'});
	jQuery(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '94px', 
			height: '94px', 
			padding: '5px'
		}, 400);
});

 
});