window.addEvent('domready', function() {
	if (typeof root == 'undefined'){
		root = '../'; 
	}
	$$('.imghover').each(function (el, i){
		$(el).addEvent('mouseover', function(){
			this.src = root+'img/nav'+this.id.substr(3)+'_h.gif';
		});
		
		$(el).addEvent('mouseout', function(){
			this.src = root+'img/nav'+this.id.substr(3)+'_n.gif';
		});
	});
	
	$$('a').each(function (el, i){
		if (el.className == "_blank"){
			el.target = '_blank';
		}
	});
});