$(function(){

  $(".events-block").hide();
  
  $(".eventstab a").click(function(e){
    e.preventDefault();
    
    $(".newstab").attr("id", "tabOff");
    $(".eventstab").attr("id", "tabOn");
    
    $(".news-block").hide();
    $(".events-block").show();
  });

  $(".newstab a").click(function(e){
    e.preventDefault();
    
    $(".newstab").attr("id", "tabOn");
    $(".eventstab").attr("id", "tabOff");
    
    $(".news-block").show();
    $(".events-block").hide();
  });
  
  if(!$("html").hasClass("ie7") && !$("html").hasClass("ie8")) $("#spotlightList").lionbars();
});
