jQuery(document).ready( function() { 
	jQuery("#tabs").tabs();
	jQuery('#tabs').bind('tabsshow', function(event, ui) {
		jQuery('#' + ui.panel.id).css('height', '540px');
	});
});