
function virtua_hide_banner(){
	jQuery('#msg_banner').hide('fast');
	document.cookie = 'display_banner=false;path=/';
}


jQuery(document).ready(function() {
	
	if ( document.getElementById('msg_banner') ) {
		setTimeout(show_msg, 5000);
	}
});

function show_msg()
{
	jQuery("#msg_banner").removeClass('hidden');
}
