 $(document).ready(function() {
 			// affichage de la billetterie dans une fiche d'artiste
			$( "#billetterie" ).click(function(){
					$('#bloc-billetterie iframe').addClass('afficher');
			});
			
			// affichage de player musique 
			$( "#music-player" ).click(function(){
					  window.open("http://www.voixdefete.com/wp3/player-musique/", "Player audio", "width=330,height=80");
			});
			
			// affichage du tab sur la page d'accueil
			//$( "#tabs" ).tabs();
			
			$('#tabs div').hide(); // Hide all divs
			$('#tabs div:first').show(); // Show the first div
			$('#tabs > ul > li:first').addClass('active'); // Set the class of the first link to active
			$('#tabs > ul > li > a').click(function(){ //When any link is clicked
				$('#tabs > ul > li').removeClass('active'); // Remove active class from all links
				$(this).parent().addClass('active'); //Set clicked link class to active
				var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
				$('#tabs div').hide(); // Hide all divs
				$(currentTab).show(); // Show div with id equal to variable currentTab
				return false;
			});
			
		
 });
