function enableTourMenu(){
	$(".tour_entry:even").addClass('odd');
	$(".tour_entry").click(function(){
	
	if($(this).hasClass('tour_entry_selected')){
		var curLabelx=$('.tour_entry_selected').children('h3').html();
		if(curLabelx){
			var curLabel2x=curLabelx.replace('[-]','[+]');
			$('.tour_entry_selected').children('h3').html(curLabel2x);
		}
		$(this).removeClass('tour_entry_selected');
		$(this).next("div.tour_events").hide();
		var curLabel=$(this).children('h3').html();
		var curLabel2=curLabel.replace('[-]','[+]');
		$(this).children('h3').html(curLabel2);	
	}else{
		var curLabelx=$('.tour_entry_selected').children('h3').html();
		if(curLabelx){
			var curLabel2x=curLabelx.replace('[-]','[+]');
			$('.tour_entry_selected').children('h3').html(curLabel2x);
		}
		$(".tour_entry").removeClass('tour_entry_selected');
		$(this).addClass('tour_entry_selected');
		var curLabel=$(this).children('h3').html();
		var curLabel2=curLabel.replace('[+]','[-]');
		$(this).children('h3').html(curLabel2);
		$("div.tour_events").hide();
		$(this).next("div.tour_events").show();						
		}								   
	});
}




$(document).ready(function(){
	
	enableTourMenu();
	
});