$(function()
{	
	
//	Dialog			
	$('.dialog').dialog(
	{
		autoOpen		: false,
		bgiframe		: false,
		width			: 800,
//		height			: 600,
		modal			: true,
		closeOnEscape	: true,
		draggable		: false,
		resizable		: false,
		
		buttons: 
		{
			"Edit my profile" 	: function(){ $('#facebook_profile_form form').submit(); }, 
			"Cancel" 			: function(){ $(this).dialog("close"); }
		}
	});
	
	$('.dialog_toggle')
		.click(function(){ $('#facebook_profile_form').dialog('open'); })
		.hover(function(){ $(this).addClass("ui-state-hover"); }, function(){ $(this).removeClass("ui-state-hover"); } )
		.mousedown(function(){ $(this).addClass("ui-state-active"); })
		.mouseup(function(){ $(this).removeClass("ui-state-active"); });
	
	$('form').each(function(){ new Validator($(this)); });
	
	if($('ul#errors').html()){ $('.dialog_toggle').click(); }
	
});
