// generator: o-Design

// design:nav_1 #18
Event.observe(document, '1site1:domloaded', function(){
	if($('e_18')){
		$('e_18').select('td.ci_18').each(function(td){
			var a = td.down('a')
			td.observe('mouseover', function(e){
				Event.stop(e)
				td.className = 'cia_18'
				a.className = 'cial_18'
			})
			td.observe('mouseout', function(e){
				Event.stop(e)
				td.className = 'ci_18'
				a.className = 'cil_18'
			})
			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
			})
		})
	}
})

