jQuery(document).ready(function() {
	jQuery("*").find("a[href='"+window.location.href+"']").each(function(){
		jQuery(this).parent().addClass("current-menu-item");
	})
	jQuery('.wpcf7-submit').hover(function(){
		jQuery(this).css('background-position', '0 -29px');
	},function(){
		jQuery(this).css('background-position', '0px 0px');
	});
	
});

