$(function(){
	$('#enter_link').hide(); 
	$('#container').css( 'cursor', 'pointer' ); 
	$('#container').click(function () {
		$('#overlay').show(); 
		$('#overlay').animate(
			{ opacity: "1" }, 
			2000, 
			"easeInOutQuart", 
			redirect_news()
		); 
	}); 
	
});


function redirect_news() {
setTimeout ("window.location= '/front'", 2000)
}

