var savingTimeout = 500;

$(document).ready(function()
{
	// Show contexts
	$(".open_modal").live('click',function()
	{	
		var menu = $(this).attr('id')+'_modal';

		$('section#'+menu).show();
		$('div.mask').show();
	});

	$('.mask, .cancel').live('click', function(e)
	{
		$('.mask, .modal').hide();
		return false;
	});	
	
	$('input#host, input#email').keyup(function()
	{
		var field = $(this);
		$.post("/views/site/do_check.php",{ value:$(this).val(), input:$(this).attr('id') } ,function(response)
		{
			if(response == 'bad')
				field.parent().removeClass('good').addClass('bad');
			else
				field.parent().removeClass('bad').addClass('good');
		});
	});

	$('input#host').focus(function(){
		$('span.http').show();
	});
	$('input#host').blur(function(){
		$('span.http').hide();
	});
});
