$(document).ready(function() {
	$("a.button").mouseout(function() {
		$(this).toggleClass("hover");
	});
	$("a.button").mouseover(function() {
		$(this).toggleClass("hover");
	});	
});
