// JavaScript Document
//IE7_PNG_SUFFIX = "-transexaul.png";

document.observe('dom:loaded', function(){

	$$('#nav>ul>li>a').each(function(navbutton){
		if(navbutton.href.locationPathname() == document.location.href.locationPathname()) navbutton.up().addClassName("selected");
		/*navbutton.observe('click',function(evt){
			Cookie.set('scroll', Object.toJSON($(document.body).cumulativeScrollOffset()));
		});*/
	});


	if(document.location.hash=='#interno' || document.location.pathname.startsWith('/admin')){
		Analytics.excludeInternalTraffic();
	}

	$$('a').each(function(link){
		link.observe('click',function(){
			try{
				if (String(link.href.locationHost())!=String(document.location.host)){
					pageTracker._trackEvent('links', 'click',link.href);
				}
			}catch(e){};
		});
	});

});
