$(function() {
        $( '#tabs' ).tabs({
  //      fx: {  opacity: 'toggle', duration:'normal'}
  //        fx: {  width: 'toggle', duration:'normal'}
        });
    });

// <!-- Fix Map centering in Tabs -->
$('#tabs').bind('tabsshow', function(event, ui) {
    if (ui.panel.id == "tabs-3") {
        resizeMap();
    }
});

