
var MasterPage = {
	load: function() {
		var dropDownMenus = new DropDownMenuSetLean({ root: 'HeaderRowBottomNavList' });
		$$('.HasDetail').each(function(item) {
			var detailSrc = item.getProperty('src').toLowerCase().replace('thumb', 'detail');
			Asset.image(detailSrc);
			if (!isIE6) {
				item.store('tip:title', $$('.DetailImageDiv')[0].get('html').replace('/images/spacer.gif', detailSrc));
			} else {
				item.store('tip:title', '<img src=\"' + detailSrc + '\" class=\"SimpleBorder\" alt=\"\" />');
			}
			item.store('tip:text', '');

			var myTips = new Tips('.HasDetail', {
				className: 'DetailToolTip',
				showDelay: 0,
				hideDelay: 400,
				offsets: { x: 40, y: 30 },
				onShow: function(tip) {
					tip.setStyle('opacity', '0');
					tip.fade('in');
				},
				onHide: function(tip) {
					tip.fade('out');
				}
			});
			myTips.tip.set('tween', { duration: 100 });
		});
	}
};

window.addEvent('load', MasterPage.load);

