// Newsflash Hider
$(document).ready(function() {
	$('#newsflash').css("display", "none");
	$('#show_nf_li').css("display", "none");
	
	
	// Check to show it...
	$.ajax({url: "/templates/corps_lookalike/hidden_flash.php",data: "check=true", type: "GET", success: function (result) { if(result != 1) $('#newsflash').fadeIn('fast'); if(result == 1) $('#show_nf_li').fadeIn('fast'); }});
	
	
	
	$('#hide_newsfash').click(function() {
		$('#newsflash').fadeOut('slow');
		$('#show_nf_li').fadeIn('fast');
		$.ajax({url: "/templates/corps_lookalike/hidden_flash.php"});
		return false;
	});
	
	$('#show_newsflash').click(function() {
		$('#newsflash').fadeIn('slow');
		$('#show_nf_li').fadeOut('fast');
		$.ajax({url: "/templates/corps_lookalike/hidden_flash.php",data: "reset=true", type: "GET"});
		return false;
	});
});
