// JavaScript Document //IE onclick fix to allowing thumbnails to be clickable. if(navigator.appName=='Microsoft Internet Explorer'){ window.addEvent('domready', function(){ $$('.panels img').each(function(img){ img.onclick=function(){location.href=this.getParent().getParent().href;} }); }); window.addEvent('domready', function(){ $$('.home_panels img').each(function(img){ img.onclick=function(){location.href=this.getParent().getParent().href;} }); }); }