$(document).ready(function(){

    var tabContainers = $('div#box > div');
    tabContainers.hide().filter(':first').show();
    
    $('div#box ul.tabNavigation a.tabs').click(function(){
        tabContainers.hide();
        tabContainers.filter(this.hash).fadeIn();
        return false;
    }).filter(':first').click();
    
    var tabContainers2 = $('div#box2 > div');
    tabContainers2.hide().filter(':first').show();
    
    $('div#box2 ul#tabNavigation2 a.tabs2').click(function(){
        tabContainers2.hide();
        tabContainers2.filter(this.hash).fadeIn();
        return false;
    }).filter(':first').click();
    
   

});
