
var j = jQuery.noConflict();
j(document).ready(function($){
    
    // Hide Speakers Link
    $('#event_navigation li a').each(function(){
        if ($(this).text() == "Speakers"){
            $(this).parent('li').remove();
        }
    });
						   
});

