jQuery(document).ready(function(){
	jQuery(".imagelisttd").animate({ opacity: 0.5}, 500 );
	jQuery("#picBlock").fadeIn(1000);

	jQuery('.imagelisttd').hover(
    function () {
      // second parameter is speed
      jQuery(this).animate({ opacity: 1}, 150 );
    },
    function () {
      jQuery(this).animate({ opacity: 0.5}, 450 );
    });
	
	
	

	

});
