function sendContactRequest () {
	if (
		v1.validate() &&
		v2.validate() && 
		v3.validate() && 
		v4.validate() && 
		v5.validate() && 
		v6.validate()
	) {
		$.post("/forms/contact/",
			{
				name:$("#Name").val(),
				Address:$("#Address").val(),
				City:$("#City").val(),
				Country:$("#Country").val(),
				Email:$("#Email").val(),
				Comments:$("#Comments").val()
			},
			function(data){
		   		data = $("#form").hide();
				data = $("#response").fadeIn();
			}
		 );
	}
}

function loadStory (uri) {
	//$("#story").fadeOut();
	//alert('ie test');
	$("#story").load(
		uri,
		{type:"post"},
		function () {
			//$("#story").fadeIn();
		}
	);
	//alert(uri);
}
