$(document).ready( function () {
							 
//	$("#callback_form").validate();
$("#contact_cardsoff").validate();
$('#inscription_form').validate();
//$('.inscription_form').validate();
$('form.transform').jqTransform({imgPath:'img/'});

$('.scroll-pane').jScrollPane();
$('.scroll-inscription').jScrollPane();

                var $pane3 = $('.scroll-pane');
				$pane3.jScrollPane({animateTo:true});
				$('a.scrollto').bind(
					'click',
					function()
					{
						var targetElementSelectorString = $(this).attr('rel');
						$pane3[0].scrollTo(targetElementSelectorString);
						return false;
					}
				);
				
				    var $pane4 = $('.scroll-inscription');
				$pane4.jScrollPane({animateTo:true});
				$('a.scrollto').bind(
					'click',
					function()
					{
						var targetElementSelectorString = $(this).attr('rel');
						$pane4[0].scrollTo(targetElementSelectorString);
						return false;
					}
				);


				
/*$("#featured_news").easySlider({
prevId: 'bt_prev',
prevText: 'Previous',
nextId: 'bt_next',
nextText: 'Next',
controlsShow: true,
controlsBefore:	'<div id="featured_news_controls">',
controlsAfter:	'</div>',
controlsFade: false,
firstId: 'bt_prev',
firstText: 'First',
firstShow: false,
lastId: 'bt_next',	
lastText: 'Last',
lastShow: false,				
vertical: false,
speed: 800,
auto: true,
pause: 5000,
continuous: true
	});		*/

	$("#featured_news").jFlow({
		slides: "#slider",
width: "99%",
		height: "60px",
		duration: 400
	});


							 
<!------------ CALLBACK -------------->


$("#callback_form").submit(function(){

var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "callback_email.php",
   data: str,
   success: function(msg){
    
$("#note").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<div class="notification_ok">Merci, nous vous rapellons très vite!</div>';
$("#fields").hide();
$('#callback_form')[0].reset();
}
else
{
result = msg;
}
$(this).html(result);
});
}
});

return false;

});
<!------------ END CALLBACK -------------->

<!------------ CONTACT FORM -------------->
$("#contact_cardsoff").submit(function(){

var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "contact_cardsoff.php",
   data: str,
   success: function(msg){
    
$("#note_contact").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<div class="contact_ok">Merci! Votre message à bien été envoyé à notre équipe qui se chargera de vous répondre au plus vite.</div>';
//$("#fields").hide();
}
else
{
result = msg;
}
$(this).html(result);
});
}
});

return false;

});

<!------------ NAVIGATION -------------->
  hiConfig = {
        sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
        interval: 200, // number = milliseconds for onMouseOver polling interval
        timeout: 200, // number = milliseconds delay before onMouseOut
        over: function() { $('#tlmep_sub').show("normal","easeOutQuart");
			
        }, // function = onMouseOver callback (REQUIRED)
        out: function() {  $('#tlmep_sub').slideUp("normal","easeInQuart"); } // function = onMouseOut callback (REQUIRED)
    }
	
	 hiConfig2 = {
        sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
        interval: 200, // number = milliseconds for onMouseOver polling interval
        timeout: 200, // number = milliseconds delay before onMouseOut
        over: function() {  $('#part_sub').show("normal","easeOutQuart");
			
        }, // function = onMouseOver callback (REQUIRED)
        out: function() {  $('#part_sub').hide("normal","easeInQuart"); } // function = onMouseOut callback (REQUIRED)
    }
	
	 hiConfig3 = {
        sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
        interval: 200, // number = milliseconds for onMouseOver polling interval
        timeout: 200, // number = milliseconds delay before onMouseOut
        over: function() {  $('#pro_sub').show("normal","easeOutQuart");
			
        }, // function = onMouseOver callback (REQUIRED)
        out: function() {  $('#pro_sub').hide("normal","easeInQuart"); } // function = onMouseOut callback (REQUIRED)
    }
	
	

	
	$('#tlmep').hoverIntent(hiConfig);
	$('#part').hoverIntent(hiConfig2);
	$('#pro').hoverIntent(hiConfig3);
	
	
	    $(".navigation_item").hover( function () {
	    $(".submenu", this).slideDown("slow","easeOutQuart");},function () {
        $(".submenu", this).slideUp("normal","easeInQuart");
		$('.notification_ok').fadeOut("slow");});
<!------------ END NAVIGATION -------------->
<!------------ TOP LINKS -------------->
 hiConfig4 = {
        sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
        interval: 100, // number = milliseconds for onMouseOver polling interval
        timeout: 100, // number = milliseconds delay before onMouseOut
        over: function() {  $('#eshop_copy_' + this.id).slideDown("slow","easeOutQuart");
			
        }, // function = onMouseOver callback (REQUIRED)
        out: function() {  $('#eshop_copy_' + this.id).slideUp("normal","easeInQuart"); 
	
		} // function = onMouseOut callback (REQUIRED)
    }
		$('.eshop_item').hoverIntent(hiConfig4)

/*$(".eshop_item").hover( function () {
	    $('#eshop_copy_' + this.id).slideDown("slow","easeOutQuart");},function () {
        $('#eshop_copy_' + this.id).slideUp("normal","easeInQuart");});
*/

/*$("#ajax").click(function () {
		$('a.tags_link').removeClass('tag_selected');
		$(this).addClass('tag_selected');
		 $('.description_tn').slideDown("slow","easeOutQuart");
	    $('.ajax').slideUp("slow","easeOutQuart");
		return false
		});*/
		
  }); 