var Site =
{
	
	load: function()
	{
		$$('.btn').each(function(el)
		{
			tempOld	= el.getAttribute('src').split('-');
			path	= '/skins/default/images/';
			
			el.addEvent('mouseover', function()
			{
				el.setAttribute('src', path + el.getAttribute('id') + '-active-' + tempOld[1]);
			});
			
			el.addEvent('mouseleave', function()
			{
				el.setAttribute('src', path + el.getAttribute('id') + '-' + tempOld[1]);
			});
			
		});
		if (location.href.indexOf('canada2') > -1) {
			$("navigation").remove();
			$("breadcrumb").remove();
			$("content").setStyle('top', '224px');
		}
	}

};

window.addEvent('domready', Site.load);