var curHome = 1; $(document).ready(function() { colorMeUp(); /* HANDLE HOVER IMAGE CHANGES */ $(".flip").hover(function() { if ($(this).attr("class").indexOf("flip") < 0) return false; if ($(this).attr("src").indexOf("images/images/") < 0) { $(this).attr({"src":$(this).attr("src").replace("images/","images/images/")}); } },function() { if ($(this).attr("class").indexOf("flip") < 0) return false; $(this).attr({"src":$(this).attr("src").replace("images/images/","images/")}); }); /* END HOVER IMAGE CHANGES */ }); function colorMeUp() { if ($(".colorme").length > 0) $(".colorme").colorbox({width:"950px",height:"550px", iframe:true}); if ($(".colormepixelated").length > 0) $(".colormepixelated").colorbox({maxWidth:"100%",maxHeight:"100%"}); if ($(".colormevista").length > 0) $(".colormevista").colorbox({width:"950px",height:"350px",iframe:true}); } function killColoringBoxes() { $.fn.colorbox.close(); return false; }