/*$.noConflict(); // To prevent conflict with prototype*/
 
$(document).ready(function($) {
	$("ul.tabs").tabs("div.panes > div", {
		tabs: 'li',
		current: 'active'
	});
	
	$("div.expandable")
		.css("cursor","pointer")
		.attr("title","")
		.click(function(){
    		$(this).toggleClass('collapsible');
			$(this).children('ul').toggle();
			$(this).children('table').toggle();
			$(this).children('span').toggle();
		});
	
});




