jQuery(document).ready(function($){
	// setTimeout and Fadeout DIV
	window.setTimeout ( "fadeout()", 10000 );
	
	// -----------------------------------------------------------------------	
}); // ENDS Document Ready




function fadeout()	{
	$('#flash-news').fadeOut(1000);	
}	
	