$(document).ready(function(){
	$("#registerform").validate();
	


	$("#registerButton").hover(function() {

		$(this).attr("src","images/registerButtonHover.png");

			}, function() {

		$(this).attr("src","images/registerButton.png");

	});

	$("#facebookBut").hover(function() {

		$(this).attr("src","images/facebookButtonHover.png");

			}, function() {

		$(this).attr("src","images/facebookButton.png");

	});


});
