
jQuery(document).ready(function() {

	        
            //var currentTab = jQuery(this).attr('href');
            jQuery('.jqueryTabs div[id$="-tab"]').toggle(5000);
            
            //jQuery(currentTab).fadeIn(5000);
            //return false;
        });

    // clean up to avoid memory leaks in certain versions of IE 6
    jQuery(window).bind('unload', function() {
        jQuery('.jquerytablist > li > a').unbind('click');
    });

/*
jQuery(document).ready(function() {

    jQuery('.jquerytablist > li > a')
        .click(function(e) { 
            jQuery('.jquerytablist > li')
                .removeClass('active');

            jQuery(this)
                .parent()
                .addClass('active');

            var currentTab = jQuery(this).attr('href');
            jQuery('.jqueryTabs div[id$="-tab"]').hide(5000);
            jQuery(currentTab).fadeIn(5000);
            //return false;
        });

    // clean up to avoid memory leaks in certain versions of IE 6
    jQuery(window).bind('unload', function() {
        jQuery('.jquerytablist > li > a').unbind('click');
    });

});

*/