jQuery.noConflict();

jQuery( function()  {

	jQuery("#tabs ul a").each(function(index) {
		text = jQuery(this).html();		
		if (text == '')
			jQuery(this).parent().remove();
				
	});
	jQuery("#tabs").tabs();

	jQuery(".kongressprogramm tbody tr:odd").css("background-color","#f0f0f0");
	
  });

