[jQuery] Tabs & slideviewer - Refiring the window load event

[jQuery] Tabs & slideviewer - Refiring the window load event


On each tab (the pictures of the cars are a tab button) contains a
slideviewer plugin.
I'm the binding the slideviewer plugin with the binding load event to
initilize here: http://gornoford.com/ford-gt-500-kr.php
like so:
$(window).bind('load', function() {
$('#gallery').slideViewer();
    $('div#gallery-ford-shelby').slideView();
    $('div#gallery-ford-kr').slideView();
});
On the other tabs I have slideviewers as well. The tabs that aren't
selected are not initializing the slideViewer. Anyone know of a way to
refire the load event without reloading the page? Or a possible
programming work around?
Or should i just delegate each tab to initialize slide viewer on the
users tab select? What would be the best practice?
Thanks for looking