// JavaScript Document
 // shows/hides shows on LIVE page
 $(document).ready(function(){
				$(".live_page .show_list_holder").hide();
				 $("h3.gigpress-artist-heading").click(function(){
					$(this).next(".show_list_holder").slideToggle(500);
				});
				  $("h3.gigpress-artist-heading").mouseout(function(){
				  $(this).css("background", "#fff");
	
				}).mouseover(function(){
				  $(this).css("background", "#00dfff");
	
				});
				  		});
