
$(document).ready(function(){

 



 
 

/*$('.imgBox img:eq(0)').addClass('show');


$(".thumbs img").each(function(i){
    
 	
 	$(this).hover(function() {
   
 		
 		$('.imgBox img').removeClass('show');
 		
      	$('.imgBox img:eq('+i+')').addClass('show');
   
    	}, function() {
   
      
   
      	});

 	
 	
 	
 });*/

 
 



$('.imgBox img:eq(0)').fadeIn('slow');

$(".thumbs img").each(function(i){
    
 	
 	$(this).hover(function() {
   
 		
 		$('.imgBox img').css("display","none");
		
 		
      	$('.imgBox img:eq('+i+')').fadeIn('slow');
   
    	}, function() {
   
      	$('.imgBox img:eq('+i+')').css("display","none");
   		

      	
      	});

 	
 	
 	
 });

 
 

});