jQuery(document).ready(function(){ var ch = $('#bloggers').height(); $('#bloggers').height(ch); jQuery(".tab:not(:first)").hide(); //to fix u know who jQuery(".tab:first").show(); jQuery(".tabs a").not(".notab").click(function(){ stringref = jQuery(this).attr("href").split('#')[1]; jQuery(".tabs a").removeClass("selected"); jQuery(this).addClass("selected"); jQuery('.tab:not(#'+stringref+')').hide(); $('#flash2').addClass("hideflash"); $('#flash1').removeClass("hideflash"); if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == "6.0") { jQuery('.tab#' + stringref).show(); } else jQuery('.tab#' + stringref).fadeIn(); return false; }); $('#all_blog').click(function() { $('#bloggers').slideToggle(); $('#link').text($('#link').text() == 'Hide all bloggers' ? 'Show all bloggers' : 'Hide all bloggers'); return false; }); $('#builds').click(function() { $('#flash1').addClass("hideflash"); $('#flash2').removeClass("hideflash"); return false; }); }); function showbox(img) { var obj = '
' +'' +'
'; if(document.getElementById("lbox") == null) { document.body.innerHTML = document.body.innerHTML + obj; } else { document.getElementById("limg").src='banners-home/'+img; document.getElementById("lbox").style.visibility = 'visible'; } } function closeWin() { document.getElementById("lbox").style.visibility = 'hidden'; }