﻿function showSpecialDetails(eventID){
    $$("#special_"+eventID+" .details")[0].style.display = "block";
    $$("#special_"+eventID+" .moreinfo")[0].style.display = "none";
    $$("#special_"+eventID+" .closebutton")[0].style.display = "block";
    //scrollToElement($("event_"+eventID));
}

function hideSpecialDetails(eventID){
    $$("#special_"+eventID+" .details")[0].style.display = "none";
    $$("#special_"+eventID+" .moreinfo")[0].style.display = "block";
    $$("#special_"+eventID+" .closebutton")[0].style.display = "none";
}


function onDateSelected(){
    var url = $("dateSelector").value;
    window.location = url;
}
   
function initPage(){
    
    // Show the ID in the address hash
    if(location.hash.length > 0){
        try{
            var eventID = location.hash.substring(1);
            showEventDetails(eventID); 
        }catch(e){}
    }
       
    
}
//document.observe("dom:loaded", initPage);