$(document).ready(function(){
	$('table#detailsTable').tablesorter();
});


runOnLoad(function(){
	
	$('div.detailsTable').css('width', ($('table#detailsTable').width()+10)+"px");
	
	if($('table#detailsTable').height() < 550) {
		$('div.detailsTable').css('top', (550-$('div.detailsTable').height())/2);
	}

	
});
