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

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