	$(function() {
    // run the code in the markup!
   $('#s6').cycle({
    fx:     'fade',
    timeout: 10000,
    delay:  -2000
});
    
});// JavaScript Document
	

$(document).ready(function(){


$('.event_desc').toggle();

$('.event_title a').click(function() {
  
  //alert("Is this even working?");
  
  $(this).parent().find('.event_desc').toggleFade({ speedIn : "fast"});
  return true;
});



//***********************************

}); // end




