// generator: o-Design

// design:nav_1 #7
Event.observe(document, '1site1:domloaded', function(){
	$('e_7').select('td.ci_7').each(function(td){
		var a = td.down('a')
		td.observe('mouseover', function(e){
			Event.stop(e)
			td.className = 'cia_7'
			a.className = 'cial_7'
		})
		td.observe('mouseout', function(e){
			Event.stop(e)
			td.className = 'ci_7'
			a.className = 'cil_7'
		})
		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:scroller #27
initScroller(27, '100%', '422px');

