/*
	(c) copyright regional.pl
*/

function checkRequiredFields(formObj)
{
	ok = true;
    $(formObj).find(".requiredField").each(function(){
			if (this.value=='')
	        {
          		ok=false;
          		$(this).css("background", "#ff9");
        	}
        	else
        	{
          		$(this).css("background", "#fff");
        	};                    
      	});
	if (ok)
		return true;
	alert('Nie wypełniono wszystkich wymaganych pól!');
    return false;
}

$(document).ready(
			function()
			{
				$(".requiredField[@type!='hidden']").after('<span class="redStar">*</span>');
				$(".hide_default").each(function(){$(this).hide();});
			}
		);
		