function muestraAlerta(msg, tipo){
	switch(tipo){
		case 'error':
			$('#alerta').attr("class","alertaError");
			$('#imgAlerta').attr('src', 'temas/'+$.cookie('themePath')+'/img/error.png');
		break;
		
		case 'success':
			$('#alerta').attr("class","alertaSuccess");
			$('#imgAlerta').attr('src', 'temas/'+$.cookie('themePath')+'/img/success.png');
		break;
	}
	$('#textoAlerta').html(msg);
	$('#alerta').animate({'top':-40}, 500);	
}
function cierraAlerta(){
	$('#alerta').animate({'top':-($('#alerta').height()+40)}, 500);
}


$(document).ready(function(){
	cierraAlerta();	
	$('#textoAlerta').click(function(){
		cierraAlerta();						 
	});
});
