// perform JavaScript after the document is scriptable. 
	var $j = jQuery.noConflict();
     	$j(document).ready(function($){
		   
    // setup ul.tabs to work as tabs for each div directly under div.panes 
    $("ul.tabs").tabs("div.panes > div"); 
});

