/*TAB BOTTOM*/

jQuery(function () {
    var tabContainers = jQuery('div.tabs > div');
    
   jQuery('div.tabs ul.tabNavigation a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        jQuery('div.tabs ul.tabNavigation a').removeClass('selected');
        jQuery(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
});

jQuery(function () {
    var tabContainers = jQuery('div.tabs_bottom > div');
    
   jQuery('div.tabs_bottom ul.tabNavigation a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        jQuery('div.tabs_bottom ul.tabNavigation a').removeClass('selected');
        jQuery(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
});



/*TAB TOP*/

jQuery(function () {
    var tabContainers = jQuery('div.tabs_top > div');
    
   jQuery('div.tabs_top ul.tabNavigation_top a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        jQuery('div.tabs_top ul.tabNavigation_top a').removeClass('selected');
        jQuery(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
});

jQuery(function () {
    var tabContainers = jQuery('div.tabs_bottom_top > div');
    
   jQuery('div.tabs_bottom_top ul.tabNavigation_top a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        jQuery('div.tabs_bottom_top ul.tabNavigation_top a').removeClass('selected');
        jQuery(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
});


