// domready event highlight
window.addEvent('domready', function(){
	// create overtime guaranteed
	otg = new OvertimeGuaranteed({});
	
	new Marquee($$('#mast a'), $$('#scroll-marquee .thumb-marquee'), {});
	
	// omniture tracking for marquee
	$$('span.thumb-marquee, #mast a').addEvent('click', function(e){
		e.stop();
		var analytics = (this.get('rel')||"null|null").split('|');
		linkCode(this, analytics[0], analytics[1]);
		if (this.get('href')) {
			if (this.getProperty("target") && this.getProperty("target").toLowerCase()=="_blank") window.open(this.get("href"))
			else document.location = this.get('href');
		}
	});
});