jQuery.noConflict();

// Start jQuery pageSlide code 
jQuery(document).ready(function(){

	jQuery(".bouton-slide").click(function(){
		jQuery("#DivSlide").slideToggle("slow");
		jQuery(this).toggleClass("active"); return false;
	});
	
	 
});

// ZoomBox PrettyPhoto
jQuery(document).ready(function(){
	jQuery("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
});


// Menu horizontal Jquery
jQuery(document).ready(function(){
	jQuery("#nav-one li").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
  	if (document.all) {
		jQuery("#nav-one li").hoverClass ("sfHover");
	}
});
	  
	jQuery.fn.hoverClass = function(c) {
	return this.each(function(){
	jQuery(this).hover( 
		function() { jQuery(this).addClass(c);  },
		function() { jQuery(this).removeClass(c); }
		);
	});
};	








