$(document).ready(function() {
	
    /* =Menu
  -------------------------------------------------------------- */

	// Menu Click & Scroll
	$('a.nav').click(function() {
		var menu_sel = this;
		$(menu_sel).blur();
		$.scrollTo(this.hash, 500);
		$('a.nav').each(function() {
			if (menu_sel != this) {
				$(this).animate({ color: "#488b9f" }, 500);
				$(this).removeClass("sel");
			}
		});
		$(menu_sel).addClass("sel");
		return false;
	});
	
	// Menu Scroll hover
	$('a.nav').mouseover(function() {
		$(this).stop().animate({ color: "#fff" }, 500);
		return false;
	});
	
	// Menu Scroll mouseout
	$('a.nav').mouseout(function() {
		$(this).stop().animate({ color: "#488b9f" }, 500);
		return false;
	});
	
	
	/* =Accordions
  -------------------------------------------------------------- */
	$("#accordion-references").accordion();
	$("#accordion-a-propos").accordion();
	
	/* =Tooltips
  -------------------------------------------------------------- */
	$('a.tooltip').qtip({ style: { name: 'cream', tip: true, color: 'black' } });

	/* =SlideDeck
	-------------------------------------------------------------- */
	$('.slidedeck').slidedeck();
	
	/* =Contact form
	-------------------------------------------------------------- */
	// SUCCESS AJAX CALL, replace "success: false," by:     success : function() { callSuccessFunction() }, 
	$("#formID").validationEngine({
		ajaxSubmit: true,
			ajaxSubmitFile: "/wp-content/themes/webdesigner-et-webmaster.fr/formValidator/ajaxSubmit.php",
			ajaxSubmitMessage: "Votre message m'a bien été envoyé ! A bientôt et bonne année !!",
		success : function() {},
		failure : function() {}
	});

});

