// generator: o-Design

// design:nav_1 #53
Event.observe(document, '1site1:domloaded', function(){
	if($('e_53')){
		$('e_53').select('td.ci_53').each(function(td){
			var a = td.down('a')
			td.observe('mouseover', function(e){
				Event.stop(e)
				td.className = 'cia_53'
				a.className = 'cial_53'
			})
			td.observe('mouseout', function(e){
				Event.stop(e)
				td.className = 'ci_53'
				a.className = 'cil_53'
			})
			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_3 #49

function obj_49(id){
	if(document.all && document.all[id]) return document.all[id];
	else if(document.getElementById) return document.getElementById(id);
	else if(document.layers){
		if(document[id]) return document[id];
		if(document.layers[id]) return document.layers[id];
	}
	return null
}

function over_49(id, isSub){
	button = obj_49('i49_' + id);
	text = obj_49('il49_' + id);
	if(!button || !text) return;
	button.className = isSub ? 'scia_49' : 'cia_49';
	text.className = isSub ? 'scial_49' : 'cial_49';
}

function out_49(id, isSub){
	button = obj_49('i49_' + id);
	text = obj_49('il49_' + id);
	if(!button || !text) return;
	button.className = isSub ? 'sci_49' : 'ci_49';
	text.className = isSub ? 'scil_49' : 'cil_49';
}

function go_49(url){
	document.location = url
}

