$(document).ready(function(){ 
	
	// Chain elements with a comma: #qc .button, #contact .button, #newsletter .button
	
	$("#submit").hover(
		function () {
			$(this).addClass("hover");
		}, 
		function () {
			$(this).removeClass("hover");
		}
	);
	

});