
var Page = {
	load: function()
	{
		Asset.image('/images/home/location.png');
		Asset.image('/images/home/story.png');
		Asset.image('/images/home/partyAnimal.png');
		//Asset.image('/images/home/beerPong.png');
		Asset.image('/images/home/specials.png');
		//Asset.image('/images/home/ads.png');
		Asset.image('/images/home/photos.png');
		Asset.image('/images/home/events.png');
		Asset.image('/images/home/marsh8.png');
		Asset.image('/images/home/responsibility.png');
		Asset.image('/images/home/sports.png');
		Asset.image('/images/home/menu.png');

		$('LocationArea')		.store('tip:title', '<img src="/images/home/location.png" width="101" height="32" />');
		$('StoryArea')			.store('tip:title', '<img src="/images/home/story.png" width="165" height="30" />');
		$('PartyAnimalArea')	.store('tip:title', '<img src="/images/home/partyAnimal.png" width="217" height="33" />');
		//$('BeerPongArea')		.store('tip:title', '<img src="/images/home/beerPong.png" width="146" height="33" />');
		$('SpecialsArea')		.store('tip:title', '<img src="/images/home/specials.png" width="140" height="32" />');
		//$('AdsArea')			.store('tip:title', '<img src="/images/home/ads.png" width="156" height="30" />');
		$('PhotosArea')			.store('tip:title', '<img src="/images/home/photos.png" width="114" height="30" />');
		$('EventsArea')			.store('tip:title', '<img src="/images/home/events.png" width="137" height="30" />');
		$('SiteByArea')			.store('tip:title', '<img src="/images/home/marsh8.png" width="228" height="37" />');
		$('ResponsibilityArea')	.store('tip:title', '<img src="/images/home/responsibility.png" width="226" height="44" />');
		$('SportsArea')			.store('tip:title', '<img src="/images/home/sports.png" width="101" height="30" />');
		$('MenuArea')			.store('tip:title', '<img src="/images/home/menu.png" width="195" height="30" />');
		
		$('LocationArea')		.store('tip:text', '');
		$('StoryArea')			.store('tip:text', '');
		$('PartyAnimalArea')	.store('tip:text', '');
		//$('BeerPongArea')		.store('tip:text', '');
		$('SpecialsArea')		.store('tip:text', '');
		//$('AdsArea')			.store('tip:text', '');
		$('PhotosArea')			.store('tip:text', '');
		$('EventsArea')			.store('tip:text', '');
		$('SiteByArea')			.store('tip:text', '');
		$('ResponsibilityArea')	.store('tip:text', '');
		$('SportsArea')			.store('tip:text', '');
		$('MenuArea')			.store('tip:text', '');

		var myTips = new Tips('.HasTooltip', { 
			className: 'toolTip', 
			showDelay: 0, 
			hideDelay:0,
			offsets: { x:10, y:-13 },
			onShow: function(tip) {
				tip.setStyle('opacity', '0');
				tip.fade('in');
			},
			onHide: function(tip) {
				tip.fade('out');
			}
		});
		myTips.tip.set('tween',{duration: 250});
	}
};

window.addEvent('load', Page.load);

