$(document).ready(function(){
	//Forms
	$('input[type=text],input[type=password],textarea').addClass('ui-widget-content ui-corner-all');
	$('input,select,textarea') //Focus feedback
		.focus(function(){
			$(this).addClass('ui-state-focus')})
		.blur(function(){
			$(this).removeClass('ui-state-focus').prev('label').prev('div.message').hide('drop','','slow').removeClass('message').next('input[type=submit]').focus();
		});
	$('input[type=submit]').button();
});
