$().ready(function() {
	
	jQuery("a[rel='realisations']").colorbox();
	
	/*-- Start Skin checkbox & radio elmts --*/
	jQuery('input:checkbox').checkbox({cls:'custom-checkbox'});
	jQuery('input:radio').checkbox({cls:'custom-checkbox'});
	/*-- End Skin checkbox & radio elmts --*/
	
	//-- Menu principal
	$("#nav > li").hover( function () { 
		
		if($(".submenu-wrapper", this).size())
			$(this).addClass("active");
		else
			$(this).addClass("active-simple");	
		
		$(".submenu-wrapper", this).css("top","30px");

        return false; 
		
    },
    function () { 
    	
    	$(this).removeClass("active");
    	$(this).removeClass("active-simple");

		$(".submenu-wrapper", this).css("top","-10000px");

        return false; 
		
    }	
	);
	//-- Fin menu principal
	
	
	//-- Validation formulaire	
	$("#livrets_form").validate();
	
});
