
jQuery(document).ready(function() {

	 //$("#twoStop").hide('slow');
	//$("#twoStop").hide('slow');
	 //$("#hortonCenter").hide('slow');
	$("#hortonCenter").show('slow');
	$("#divBuyTicketsHorton").css("backgroundColor","#E8E2D6");
	$("#divBuyTicketsHorton").css("height","175px");
	
	$("#allInOne").show('slow');
	$("#divBuyTicketsAllInOne").css("backgroundColor","#E8E2D6");
	$("#divBuyTicketsAllInOne").css("height","175px");	
	
	$("#twoStop").show('slow');
	$("#divBuyTicketsTwoStop").css("backgroundColor","#E8E2D6");
	$("#divBuyTicketsTwoStop").css("height","175px");

	
    $("#buyTicketsAllInOne").toggle(function(){
		$("#allInOne").hide('slow');
		$("#divBuyTicketsAllInOne").css("backgroundColor","#FFFFFF");
		$("#divBuyTicketsAllInOne").css("height","auto");
   },function(){
		$("#allInOne").show('slow');
		$("#divBuyTicketsAllInOne").css("backgroundColor","#E8E2D6");
		$("#divBuyTicketsAllInOne").css("height","175px");
   });


   $("#buyTicketsTwoStop").toggle(function(){
		$("#twoStop").hide('slow');
		$("#divBuyTicketsTwoStop").css("backgroundColor","#FFFFFF");
		$("#divBuyTicketsTwoStop").css("height","auto");
   },function(){
		$("#twoStop").show('slow');
		$("#divBuyTicketsTwoStop").css("backgroundColor","#E8E2D6");
		$("#divBuyTicketsTwoStop").css("height","175px");

   });

    $("#buyTicketsHorton").toggle(function(){
		$("#hortonCenter").hide('slow');
		$("#divBuyTicketsHorton").css("backgroundColor","#FFFFFF");
		$("#divBuyTicketsHorton").css("height","auto");
   },function(){
		$("#hortonCenter").show('slow');
		$("#divBuyTicketsHorton").css("backgroundColor","#E8E2D6");
		$("#divBuyTicketsHorton").css("height","175px");

   });

	

 });

