$(document).ready(function() {
  $(".module li.modnav a, .module li.nav a").attr("href","javascript: void(0);");
  $(".module li.modnav a, .module li.nav a").click(function(){
    var content = $(this).parents(".module").children(".sectionContent");
    var section = $(this).parent().attr('id');
    var service = $(this).parents(".module").attr('title') + ".php";
    var link = $(this).attr("title");
    var data = {event_id : event_id, section : section};
    content.empty();
    $("#loader").clone().appendTo(content);
    //content.addClass("loader");
    $(this).parent().siblings(".on").removeClass('on');
    $(this).parent().addClass("on");
    content.load("/services/" + service, data,
                 function() {content.children("#loader").remove();});
    /*
    content.load("/services/" + service, data,
                 function() { content.removeClass("loader"); });
    */
    $(this).parents(".module").find("a.view-all").attr("href",link);
  });
  $('.venueInfo a').attr('target','_blank');
  $('#bioBox').jqm();
  $('.bioLink').click(function(){
    var q = $(this).attr('name');
    var service = '/services/bio.php?q=' + q;
    $('#bioBox').jqm({ ajax : service }).jqmShow();
  });
  $("#messages")
    .fadeIn('slow')
    .animate({opacity: 1.0}, 4000)
    .animate({height: "hide", opacity: "hide"}, 1000)
    .queue( function() { $(this).remove(); });
});
