
jQuery(document).ready(function(){


	$("#newsletter_optin").hover(function(){
		$(this).addClass("hover");
	}, function(){
		$(this).removeClass("hover");
	})



});
