$(document).ready(function(){
  // perform JavaScript after the document is scriptable here
 
  // init Tab paging
	// setup tr.tabs to work as tabs for each td directly under tr.panes
	$("ul.tabs").tabs("div.panes > div");
	
	//set styles as they are not showen without js activated
	$('ul.tabs').css('visibility', 'visible');
	$('.panes').css('border', '1px solid #999');
	$('.panes div').css('padding', '20px');
});
