﻿$(function () {
    var tabContainers = $('div.strips > div');
    tabContainers.hide();
    
    $('div.nav a.stripnav').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).fadeIn('normal');
        return false;
    });
});