
$(document).ready(function() {
//	var valSave;
//	$("#id_project_name").focus(function() {
//		if ($(this).val()=="Name of project") {
//			$(this).val("");
//		}
//	});
//	$("#id_project_name").blur(function(){
//		if ($(this).val()=="") {
//			$(this).val("Name of project");
//		}
//	});
//	$("#id_email").focus(function() {
//		if ($(this).val()=="Your email adress") {
//			$(this).val("");
//		}
//	});
//	$("#id_email").blur(function() {
//		if ($(this).val()=="") {
//			$(this).val("Your email adress");
//		}
//	});
//	$("#id_comment").focus(function() {
//		if ($(this).val()=="Comment") {
//			$(this).val("");
//		}
//	});
//	$("#id_comment").blur(function() {
//		if ($(this).val()=="") {
//			$(this).val("Comment");
//		}
//	});
	//$("#steps_slide").hide();
	$(".submit-button").mouseover(function() { $(this).addClass("hover"); });
	$(".submit-button").mouseout(function() { $(this).removeClass("hover"); });
});

