$(document).ready(function(){
	$('.coverImageLayer').bind('mouseenter', function(){
		$(this).find('a').animate( {opacity:0.1}, 'fast' );
	});
	$('.coverImageLayer').bind('mouseout', function(){
		$(this).find('a').animate( {opacity:1}, 'fast' );
	});

	$('#newsWidget li').not('.current-page').bind('mouseenter', function(){
		$(this).css('cursor', 'pointer');
		$(this).find('div').animate( { backgroundColor:'#ffffff' }, 'fast');
		$(this).find('div p').animate( { color:'#555555' }, 'fast', function(){} );	
	});

	$('#newsWidget li').not('.current-page').bind('mouseleave', function(){
		$(this).find('div p').animate( { color:'#fff' }, 'fast', function(){} );	
		$(this).find('div').animate( {backgroundColor:'#aaa' }, 'fast', function(){} );	
	});
	
	$('#newsWidget li').not('.current-page').bind('click', function(){
		var link=$(this).find('h3 a').attr('href');
		window.location=link;
	});	
	
	

})