// generator: o-Design

// design:nav_graphic #4

function over_4(id){
	$('i4_' + id).className = 'cia_4';
}

function out_4(id){
	$('i4_' + id).className = 'ci_4';
}

// design:nav_1 #11
Event.observe(document, '1site1:domloaded', function(){
	$('e_11').select('td.ci_11').each(function(td){
		var a = td.down('a')
		td.observe('mouseover', function(e){
			Event.stop(e)
			td.className = 'cia_11'
			a.className = 'cial_11'
		})
		td.observe('mouseout', function(e){
			Event.stop(e)
			td.className = 'ci_11'
			a.className = 'cil_11'
		})
		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
		})
	})
})

