function whatIsEstitch(){
	$("#overlay").fadeIn(500);
	$(".overlayContent").html($('#whatisestitch').html());
}


$(document).ready(function() {   
	$("#form").validate({
		meta: 'validate',
		//debug: true,
		errorElement: 'q',
		errorPlacement: function(error, element) {
			element.parent().addClass('error');
			error.appendTo(element.parent());
		},
		success: function(label) {
			label.parent().removeClass('error');
			label.remove();
		},
	});
	$('#shippingCity, #shippingStreet, #shippingCountry').parent().toggle();
	$('#shipping').click(function() {
		$('#shippingCity, #shippingStreet, #shippingCountry').parent().toggle();
	});
}); 

function showCompletetedPreview(image){
	$(".overlayContent").html("<img style='padding-left:150px;' src='/"+image+"' />");
	$("#overlay").fadeIn(500);
}
