	$(function() {	

	

		$("#user_form input, #sub_form input").focus(function(){

			$(this).val('');

		});

			

		

		function notification(message){



			var bWidth = $('html').width(); 	var bHeight = $('html').height();				

			var nWidth = $("#notif").width();	var nHeight = $("#notif").height();		

			var leftOffset = ( bWidth - nWidth ) / 2;	

			var topOffset = ( bHeight - nHeight ) / 2;	

			$("#notif").css({'top':topOffset,'left':leftOffset});				

			$("#notif").html(message);

			$("#notif").fadeIn(500,function(){

				setTimeout(function(){ $("#notif").fadeOut(500); },3000);				

			});

		}

				

});
