
/**
 * @author r.pannisco
   @author f.delucia
 */


function myGetAlert(immagine,testo){
	$('.imgAlert').attr('src', immagine)
	$('.msgAlert').empty();
	$('.msgAlert').append(testo);
	$('.alertDelux').fadeIn('slow',function(){
		$('.alertDelux').fadeTo(4000, 1, function() {
			$('.alertDelux').fadeOut('slow');
		});
	});
}