$(document).ready(function(){
	$('input[type=submit]:not(.exclude)').each(function(){
		$(this).after('<span class="submit-button" style="' + $(this).attr('style') + '">' + $(this).val() + '</span>').remove();
		Cufon.replace('.submit-button', { fontFamily: 'KO50' })
	});
	
	$('span.submit-button').click(function(){
		$(this).parents('form').submit();
		$(this).unbind('click');
	});
	
	$('input[type=text]').keypress(function(e){
		if(window.entersubmit != 'no'){
			if(e.keyCode == 13){
				$(this).parents('form').submit();
			}
		}
	});
	
	$('input[type=password]').keypress(function(e){
		if(window.entersubmit != 'no'){
			if(e.keyCode == 13){
				$(this).parents('form').submit();
			}
		}
	});
});

