$(function(){
	$(".autoclear")
	.click(function() {
		if ($(this).val() == $(this).attr('defaultValue')) $(this).val("");
	})
	.blur(function() {
		if ($(this).val() == "") $(this).val($(this).attr('defaultValue'));
	});

	var err = $(".error");
	if(err.length !== 0){
		notify_div(err);
	}
	
	
	var msg = $("#message");
	if(msg.length !== 0){
		notify_div(msg);
	}
});



function notify_div(div){
	var clone = $(div).clone();
	div.remove();
	
	clone
	.addClass("notify")
	.prependTo('body')
	.css("display", "none")
	.fadeIn(3000, function(){clone.fadeOut(7000);});
	//.fadeIn//.fadeOut	
}
