// generator: o-Design

// design:nav_graphic #212

function over_212(id){
	$('i212_' + id).className = 'cia_212';
}

function out_212(id){
	$('i212_' + id).className = 'ci_212';
}

// design:nav_1 #266
Event.observe(document, '1site1:domloaded', function(){
	$('e_266').select('td.ci_266').each(function(td){
		var a = td.down('a')
		td.observe('mouseover', function(e){
			Event.stop(e)
			td.className = 'cia_266'
			a.className = 'cial_266'
		})
		td.observe('mouseout', function(e){
			Event.stop(e)
			td.className = 'ci_266'
			a.className = 'cil_266'
		})
		td.observe('click', function(){
			if(td.clickIsBubble != true) document.location = a.href.match(/^(http|https):/) ? a.href : document.location.baseHref + a.href
		})
		a.observe('click', function(e){
			td.clickIsBubble = true
		})
	})
})

