$(function(){
	$( 'form' ).submit(function(oEvent){
		$( '.req', this ).each(function(){
			if( this.value == '' )
			{
				$( this ).addClass( 'fout' );
				oEvent.preventDefault();
			}
			else
			{
				$( this ).removeClass( 'fout' );
			}
		});
	});
});
