/**
 * Application Scripts
 * Use it only for default methods around the website
 */
(function($){
	
	setTimeout(hideAlert,4000);
	$("#alert-message").click(function(){
		hideAlert();
	});
	function hideAlert(){
		if ($("#alert-message")[0]) { $("#alert-message").slideUp('fast'); }
	}
	
	
})(jQuery);
