$(document).ready(function () {
	// buttons
	$('input.button').hover(function () {
		$(this).toggleClass('hover');
	});
});
