jQuery(document).ready(function($){
	var tmp;
	$('#loginform input').hover(function () {
			tmp = $(this).val();
			if (tmp == "Login" || tmp == "Password" ) {
				$(this).attr("value","");
			}
		},
		function () {
			if ($(this).val() == "") {
				$(this).attr("value",tmp);
			}
		}
	);
})
