$(document).ready(function() {
	$(".canhide").append("<div class='close-notification png_bg'></div>").css("position", "relative");
	$(".close-notification").click(function() {
		$(this).hide();
		$(this).parent().fadeOut(700);
	});
	// Load WYSIWYG Editor - add class 'wysiwyg' to any textarea to add functionality.
	$('.wysiwyg').wysiwyg();
});
