function Site(){ this.hash = ''; this.initQueue = []; this.init = function(){ this.hash = window.location.hash; // preload and program rollovers $('.rollover').each(function(){ var img = new Image(); img.src = this.src.replace('_out','_over'); $(this).hover(function(){ this.src = this.src.replace('_out','_over'); },function(){ this.src = this.src.replace('_over','_out'); }); }); $('#logo').click(function(){ window.location = '/'; }); for(var f in this.initQueue){ this.initQueue[f](); } }; this.showHash = function(){ if(arguments[0]){ var e = arguments[0]; e.preventDefault(); } if(this.hash!=''){ $('#content').children().css('display','none'); $(this.hash).slideDown('fast'); } $('.workingList li a, #MAP_wgLaunch area').unbind('click'); $('.workingList li a, #MAP_wgLaunch area').click(function(e){ var href = $(this).attr('href'); BCC.hash = href.substring(href.indexOf('#')); BCC.showHash(e); }); }; this.extend = function(name,c){ this[name] = c; }; };