jQuery.noConflict();
     
jQuery(document).ready(function () {

	jQuery('.HorizontalJQ_Arts_Active').fadeIn();
	jQuery('.HorizontalJQ_Rubs_Active').animate( {backgroundPosition:"(0 -50px)"}, {duration:500} )
		
	jQuery('#HorizontalJQ_Rubs li a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			
			jQuery('#HorizontalJQ_Arts_Conteneur ul').hide();
			
			var tmpId = jQuery(this).attr("id");
			tmpId = tmpId.replace('HorizontalJQ_Rubs_','');
			jQuery('.HorizontalJQ_Arts_Rubs_'+tmpId).fadeIn();

			jQuery(this).stop().animate(
				{backgroundPosition:"(0 -50px)"}, 
				{duration:500})
			})
			
		.mouseout(function(){
			
			jQuery(this).removeClass("HorizontalJQ_Rubs_Active");

			jQuery(this).stop().animate(
				{backgroundPosition:"(0 0)"}, 
				{duration:500})
			})
});