<!--// add :'s and required fields to forms of class myForms
function initButtons() {
	$('button.focusblur').each(function(i) {
		$(this).focus(function() {
			$(this).addClass('hover');
		});
		$(this).mouseover(function() {
			$(this).addClass('hover');
		});
		$(this).blur(function() {
			$(this).removeClass('hover');
		});
		$(this).mouseout(function() {
			$(this).removeClass('hover');
		});
	});
}

// document on ready
$(document).ready(function() {
	initButtons();
});
//-->
