/*
 * Thickbox 3.1 - One Box To Rule Them All.
*/

//on page load call tab
                $(function () {
                        var tabContainers = $('div.tabs-1 > div#second,div#third,div#first,div#fourth');
                        tabContainers.hide().filter(':first').show();
                        
                        $('div.tabs-1 div.toptab a').click(function () {
                                tabContainers.hide();
                                tabContainers.filter(this.hash).show();
                                $('div.tabs-1 div.toptab a').removeClass('selected');
                                $(this).addClass('selected');
                                return false;
                        }).filter(':first').click();
                });

