var cp_alert = {
	show : function () {
		setTimeout(function () {
			$('#special-alert').animate({opacity:'show'},'slow');
			$('#special-alert-tear').fadeOut();
		},1000);
	},
	hide : function () {
		$('#special-alert').fadeOut('slow');
		$('#special-alert-tear').fadeIn();
	}	
};

$(document).ready(function () {
	//cp_alert.show();
	
	$('.close-alert').click(function (e) {
		cp_alert.hide();
	});
	
	$('#special-alert-tear').click(function (e) {
		cp_alert.show();
	});
});