﻿$(document).ready(function () {
    $('body').addClass('js');
    $("#tabs").addClass("groupa");
    var tab = window.location.hash
    if (tab == "#groupb" || tab == '#cpreview' || tab == '#txpCommentInputForm' || tab.indexOf('#c0') == 0) {
        $("#tabs").removeClass();
        $("#tabs").addClass("groupb");
    }
    
    $("#goto-groupb a").click(function () {
        $("#tabs").removeClass();
        $("#tabs").addClass("groupb");
        return false;
    });
    
    
    $("#goto-groupa a").click(function () {
        $("#tabs").removeClass();
        
        $("#tabs").addClass("groupa");
       
        return false;
    });
    
    $("#goto-groupb-alt a").click(function () {
        $("#tabs").removeClass();
        $("#tabs").addClass("groupb");
        window.scroll(0, 200);
        return false;
    });
    
    $("#goto-groupa-alt a").click(function () {
        $("#tabs").removeClass();
        $("#tabs").addClass("groupa");
        return false;
    });
        $('input.switcheroo').focus(function () {
        if (this.value == this.defaultValue) this.value = '';
    }).blur(function () {
        if (this.value == '') this.value = this.defaultValue;
    });
    $('html.ie #groupb ~ .meta').hide();

   
});
