$(document).ready(function(){
	$('#layer1_form').ajaxForm({
		target: '#content',
		success: function() 
		{
			$("#layer1_content").hide();
			$("#layer1").animate({opacity: 1.0}, 3000).fadeOut('slow', function() {
				$("#layer1").hide();
			});
		}				
	});
	
	//$("#layer1").hide();
	
	$('#share').click(function()
	{
		$("#content").html('');
		$("#layer1_content").show();
		$("#layer1").show().center({
			//vertical: false, // only vertical
			horizontal:true
		});
		
	});
	
	$('#close').click(function()
	{
		$("#layer1").hide();
		//return false;
	});
	
	var value = "";
	$("#name1, #email1, #name2, #email2").focus(function(){
		value = $(this).val();
		if($(this).val()==value){
			$(this).val("");
		}
	}).blur(function(){
		if($(this).val()==""){
			$(this).val(value);
		}
	});
});
