jQuery(function(){
		jQuery('.pleaseValidate').submit(function(){
				jQuery('.errors').hide();
				var process=true;
				var red='#BD161D';
				jQuery(this).find('.required').each(function(){
					$this=jQuery(this);
					$this.css({
							'border-color':'#B3B4B5',
							'color':'black'
					});
					jQuery('#'+$this.attr('id')+'_label').css({
							'color':'black'
					});
					
					if($this.attr('value').length<=0){
						$this.css({
							'border-color':red,
							'color':red
						});
						jQuery('#'+$this.attr('id')+'_label').css({
							'color':red
						});
						process=false;
					}
					
				});
				jQuery(this).find('.email').each(function(){
						$this=jQuery(this);
						if($this.attr('value').length>0 && !$this.attr('value').match(/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/)){
							$this.css({
									'border-color':red,
									'color':red
							});
							jQuery('#'+$this.attr('id')+'_label').css({
									'color':red
							});
							process=false;
						}
				});
				
				if(!process){
					jQuery('.errors').css({'background-color':'#fff799','padding-left':'10px'}).slideDown();
					
				}
				
				return process;
		});
});
