jQuery(document).ready(function(){
	jQuery('#ul_div_0 a').hover(
		function(){
			jQuery(this).animate({backgroundColor:'#84a0af',color:'#ffffff'},{queue:false,duration:5});
		},function(){
			jQuery(this).animate({backgroundColor:'#013b5a',color:'#ffffff'},{queue:false,duration:300});
	});

	jQuery("#right").fadeIn(1500);

	jQuery(".imagelisttd").animate({ opacity: 0.5}, 500 );

	jQuery('.imagelisttd').hover(
    function () {
     // second parameter is speed
     jQuery(this).animate({ opacity: 1}, 150 );
    },
    function () {
     jQuery(this).animate({ opacity: 0.5}, 450 );
    });


});
