$(function(){
	$("div.hoverBtn").hover(
    	function(){
       		$(this).css("background", "#ff1493");
    	},
    	function(){
      		$(this).css("background", "#1A274E");
    	}
	);
})

$(function(){
    $('#block1 a img').hover(
        function() {
            $(this).stop().animate({"opacity":0});
        },
        function() {
            $(this).stop().animate({"opacity":1});
        }
    );
});
