$(document).ready(function(){

	$("#items_menu").jFlow({
		slides: "#slides",  // the div where all your sliding divs are nested in
		controller: ".item_menu", // must be class, use . sign
		selectedWrapper: "item_menu_selected",  // just pure text, no sign
		width: "870px",  // this is the width for the content-slider
		height: "400px",  // this is the height for the content-slider
		duration: 400,  // time in miliseconds to transition one slide
		prev: ".item_left", // must be class, use . sign
		next: ".item_right" // must be class, use . sign
	});
	



	if (location.hash != 'undefined'){
		var hashPrefix = "#_";
		if (location.hash.indexOf(hashPrefix) > -1){
			var pageId = location.hash.substr(hashPrefix.length);
			$('#'+pageId).click();
		}
	}
			
	$('#contactForm').submit(function(e) {
			var str = $('#contactForm').serialize();
			$.ajax({
				type: "POST",
				url: "contact.php",
				data: str,
				success: function(res) {
					 if (res != 1) {
						$('#container').append('<div id="dialog">Erreur: '+res+'</div>');
						$("#dialog").dialog({
							bgiframe: true,
							modal: true,
							height: 100,
							title: 'Formulaire de contact',
							buttons: {
								Ok: function() {
									$(this).dialog('close');
								}
							}
						});
					 }
					 else 
						$('#contactForm').html("<p style='color: #000000;'>Votre message a bien été envoyé. <br />Nous vous répondrons dans les plus brefs délais.<br />Merci.</p>");
				}
			});
			return false;
	});
	
});