	$(function(){
	
		$("form").validate({
			errorElement: "span",
	 		errorPlacement: function(error, element){
				error.appendTo( element.siblings("label") );
			}
		});
		
		$(".nutritionlabel").click(function(e){
			if(!($.browser.msie && $.browser.version.substr(0,1)<7)){	
				e.preventDefault();
				$("#nutritionlabel").modal({
					overlay:90,
					overlayCss: {backgroundColor:"#000"},
					overlayClose: true
				});
			}
		});
		
 		$(".eml").html(" at <a href=\"" + getIt(true) + "\">" + getIt() + "</a>");
		
	});
	
	function getIt(j){
		var r = "mai%23lto";
		var d = "cave%23men%23%23cook%23ies"; var e = "com";
		var n = "info"; var a = "@";
	
		var tot = n + a + d + "." + e;
		if(j) tot = r + ":" + tot;
	
		return tot.replace(/%23/g,"");
	}