/*
 * jQuery notification
 * http://combosa.com/
 *
 * Copyright (c) 2011 combosa
 * Dual licensed under the MIT and GPL licenses.
 * http://combosa.com/
 *
 * Date: 2011-05-16
 */
 // notification fade out
$(document).ready(function() {
	$(".close").click(function() {	
		$(this).fadeOut(700);
	});
	
});
