jQuery(document).ready(function() {
    $("#tabs").tabs({
        show: function(event, ui) {
        refreshFrames(ui.panel);
        }
    });
});

function refreshFrames(panel) {
    $('iframe', panel).each(function() {
    var src = $(this).attr("src");
    $(this).attr("src", src);
});
}
