// generator: o-Design

// design:nav_1 #5
Event.observe(document, '1site1:domloaded', function(){
	$('e_5').select('td.ci_5').each(function(td){
		var a = td.down('a')
		td.observe('mouseover', function(e){
			Event.stop(e)
			td.className = 'cia_5'
			a.className = 'cial_5'
		})
		td.observe('mouseout', function(e){
			Event.stop(e)
			td.className = 'ci_5'
			a.className = 'cil_5'
		})
		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
		})
	})
})

