jQuery.log = function(message) { if(window.console) { console.debug(message); } }; $(function(){ $("a[rel^='lightbox']").prettyPhoto({theme:'facebook'}); $('a.mediaflv').media({ width:640, height:480 }); var $tabs = $('a.tab'); $tabs.click(function() { //$(this).css('outline','none'); // if($(this).hasClass('current')) { } else { $tabs.removeClass('current'); $(this).addClass('current'); $('div.tab_content').hide(); $('#' + this.rel).fadeIn(); } return false; }); });