$(document).ready(function() {

	$("input, select, textarea").focus(function ()
	{
		$("div.fRowFocused").attr('class','fRow');
		$(this).parent("div.fRowError").attr('class','fRowFocused');
		$(this).parent("div.fRow").attr('class','fRowFocused');
    });
    
    

    $('span p').each( function (i) 
    {
    	$(this).parent("span").parent("div").attr('class','fRowError');
    });





});


