jQuery.noConflict();

jQuery(document).ready(function($){
							    //Lorsque la souris survole un lien
							    $("li#club").mouseover(function(){
							        $(this).stop().animate(
							            {height: '195px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
								$("li#entrainement").mouseover(function(){
							        $(this).stop().animate(
							            {height: '220px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
								$("li#competition").mouseover(function(){
							        $(this).stop().animate(
							            {height: '145px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
								$("li#temps").mouseover(function(){
							        $(this).stop().animate(
							            {height: '195px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
								$("li#pratique").mouseover(function(){
							        $(this).stop().animate(
							            {height: '245px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
								$("li#galerie").mouseover(function(){
							        $(this).stop().animate(
							            {height: '95px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
							    //Lorsque la souris quitte le lien
							    $("li.bouton").mouseout(function(){
							        $(this).stop().animate(
							            {height: '40px'},
							            {queue: false,
							            duration: 600,
							            easing: 'easeOutBounce'
							        })
							    });
								
								$("div.rond").corner();
								$("div.rond_new").corner();
								$("div.rond_coin_couleur").corner("cc:#ffffff");
								
							});
							
								
							var addthis_pub = "reims";
							var addthis_language = "fr"; 
							var addthis_options = 'email, favorites, print, facebook, twitter, live, myspace, google, delicious, more';

