 $(document).ready(function(){	
		popup();							
		menu();
		concerts();
	});
 function popup(){
	 	$(".popup a.close").click(function(){
				PopupClose($(this).parents('.popup'));		
				return false;
			});
	}
 function PopupClose(popup){
			if($.browser.msie) $(popup).css("display","none");			
			else $(popup).fadeOut("3000");	
			setTimeout(function(){ShowPopup('.popup');},5000);
	 }	
 function ShowPopup(popup){
		if($.browser.msie) $(popup).css("display","block");			
		else $(popup).fadeIn("3000");
	}	 
  function concerts(){
	  	$(".titles .ctitle .c_events").click(function(){
				$(".show").removeClass("show");
                                $(".events_list").toggleClass("show");
			});	  
	  	$(".titles .ctitle .c_concerts").click(function(){
				$(".show").removeClass("show");
				$(".concerts_list").toggleClass("show");
			});
	  }

  function menu(){
	  	$(".menu .menutable .mitem").hover(function(){
				$(this).toggleClass("miact");
			},function(){
				$(this).removeClass("miact");
			});	  
	  }
