// JavaScript Document
$(document).ready(function(){

$("#events li.showevent").click(
function(){
if( $(this).next().is(':hidden') ) { //If immediate next container is closed...
$(this).next().slideDown('fast');//show event details
$(this).find('.showit').hide();//hide 'event details' link
$(this).find('.hideit').show();//show 'hide details' link
}
else{
$(this).next().slideUp('fast');
$(this).find('.showit').show();
$(this).find('.hideit').hide();
}
}
);
   

$("#events li.showevent").hover(
function(event){
$(this).css("cursor","pointer");
}
);




});
