$(document).ready(function(){
	
	/* Forms functionality */
	$('input').each(function(){
		
		rExp = /\.\.\./g; 
		
		if ($(this).attr('value').search(rExp) == -1) {
			
			$(this).css('color','#000');
			return;
			
		}
		
		$(this).data('focused',false);
		
		$(this).focus(function(){
			
			$(this).css('color','#000');
			
			if (!$(this).data('focused')) {
			
				$(this).data('focused',true);
				
				$(this).attr('value','');
			}
			
		});
		
	});
	
	$('.mail_ko').focus(function(){
		
		$(this).attr('class','');
		
		$(this).css('color','#000');
		
		$(this).attr('value','');
	});
	
	$('.submit').click(function(){

		$(this).parents('form').submit();
			
	});
		
});
