// generator: o-Design

// design:nav_1 #6
Event.observe(document, '1site1:domloaded', function(){
	$('e_6').select('td.ci_6').each(function(td){
		var a = td.down('a')
		td.observe('mouseover', function(e){
			Event.stop(e)
			td.className = 'cia_6'
			a.className = 'cial_6'
		})
		td.observe('mouseout', function(e){
			Event.stop(e)
			td.className = 'ci_6'
			a.className = 'cil_6'
		})
		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
		})
	})
})

// design:nav_graphic #52

function over_52(id){
	$('i52_' + id).className = 'cia_52';
}

function out_52(id){
	$('i52_' + id).className = 'ci_52';
}

