$(document).ready(function(){
/*	
	$(":submit").each(function(){
		var parentForm = $(this).parents("form").get(0);
		$(this).replaceWith('<a class="button" href="javascript:document.'+parentForm.name+'.submit();">'+this.value+'</a>');
	});
*/	
	$("a.button").addClass("scaleable");
	$("a.button").prepend("&raquo; ");
	$("a.button").wrapInner("<span><em></em></span>");
	$("a.button-red").addClass("scaleable");
	$("a.button-red").prepend("&raquo; ");
	$("a.button-red").wrapInner("<span><em></em></span>");
});

function jumpTo(selectField){
	if (selectField.value != ''){
		document.location.href = selectField.value
	}
}
