$(document).ready(function(){
    $('ul#portfolio').css("visibility", "visible");
	$("ul#portfolio").innerfade({speed: 2000,timeout: 8000,type: "sequence",containerheight: "128px"});

	$("#formtest").validate({

		messages: {
				NAME: " <span style='color: #FF0000;font-size: 12px;font-weight: bold;'>*</span>",
				COUNTRY: " <span style='color: #FF0000;font-size: 12px;font-weight: bold;'>*</span>",
				EMAIL: " <span style='color: #FF0000;font-size: 12px;font-weight: bold;'>address@domain.com</span>",
				budget_per_person_whitout_flight: " <span style='color: #FF0000;font-size: 12px;font-weight: bold;'>650</span>",
				DATES_OF_TRIP: " <span style='color: #FF0000;font-size: 12px;font-weight: bold;'> *</span>",
				code: " <span style='color: #FF0000;font-size: 12px;font-weight: bold;'> * No figures only 4 Letters</span>"
		}

	});

	$("#formtest").bind("invalid-form.validate", function(){ $("#erreur").html("Please, inform the fields Containing a *."); });
});
