$(document).ready(function(){
	function submitSwap($el){
		if($el.attr("src").indexOf("_on") != -1){
			var bs = $el.attr("src").slice(0, $el.attr("src").indexOf("_on.png"));
			$el.attr("src", (bs + "_off.png"));
		}
		else {
			var bs = $el.attr("src").slice(0, $el.attr("src").indexOf("_off.png"));
			$el.attr("src", (bs + "_on.png"));
		}
	}
	$(".wnDVQuickSignup input.wnSubmit").each(function(){
		$(this).replaceWith("<input type='image' class='wnSubmit swap' value='Submit' src='http://ftpcontent.worldnow.com/kobymf/custom/button_submit_off.png'>")
	});
	$(".wnDVQuickForm input.wnSubmit").each(function(){
		$(this).replaceWith("<input type='image' class='wnSubmit swap' value='Submit' src='http://ftpcontent.worldnow.com/kobymf/custom/button_submit_off.png'>")
	});
	$("input.wnSubmit.swap").hover(function(){
		submitSwap($(this));
	},
	function(){
		submitSwap($(this));
	});
});

