jQuery(document).ready(function() { jQuery('.tabs a').click(function() { switch_tabs(jQuery(this)); return false; }); /*jQuery('.boardTabs a').mouseleave(function() { jQuery('.tab-content').hide(); jQuery('.default').show(); title = jQuery('h1#mainTitle').html(); jQuery('h2#dynamicTitle').html(title); Cufon.refresh(); });*/ jQuery('.defaulttab').click(); }); function switch_tabs(obj) { jQuery('.tab-content').hide(); jQuery('.tabs a').removeClass("selected"); var id = '#'+obj.attr("rel"); title = jQuery(id+' span').html(); jQuery('h2#dynamicTitle').html(title); Cufon.refresh(); jQuery(id).show(); obj.addClass("selected"); }