// For IE hover flicker bug try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {} // Hello jQuery! $(document).ready(function(){ // Add class to body to tell the stylesheet that JavaScript is turned on $("body").addClass("jsOn"); // Mark thumb as active & show content $("#thumbs a").click(function(){ $("#thumbs li").removeClass("active") $(this).parent().addClass("active") }); }); // Bye-bye jQuery!