$(document).ready(function(){

$("#thumbnails").stop().animate({ opacity: 1.0 },5000).animate({ 
        height: 38
		},1500);

$("#thumbnail_prev").hover(function(){
$("#thumbnail_prev").stop().animate({ 
        backgroundColor: '#aaa'
      },"fast");
},function(){
$("#thumbnail_prev").animate({ 
        backgroundColor: '#ccc'
	  },"fast");
});


$("#thumbnail_next").hover(function(){
$("#thumbnail_next").stop().animate({ 
        backgroundColor: '#aaa'
      },"fast");
},function(){
$("#thumbnail_next").animate({ 
        backgroundColor: '#ccc'
	  },"fast");
});


});
