$(document).ready(function(){
	
	$(".thumbs img").fadeTo("500", 0.5); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$(".thumbs img").hover(function() {  
                $(this).stop().animate({   width: '236px', height: '236px', marginTop: '-100px', marginLeft: '0px', opacity: '1.0'}, 200);  
                },function() {  
                $(this).stop().animate({  width: '130px', height: '130px', marginTop: '0px',  marginLeft: '0px', opacity: '0.5'}, 500);  
                }); 
	})
