jQuery.noConflict();
(function($){
    $('span.TabTitle').click(function(){
        tab_id = $(this).attr("id");
		id = tab_id.substring(4);
		$('.TabSelected').removeClass('TabSelected');
		$('#tabcontent_'+id).addClass('TabSelected');
		$(this).addClass('TabSelected');
    });
})(jQuery);

