
function fCreateIntroNav(){
	var _divs = document.getElementById('content').getElementsByTagName('div'),_switch='';
	if(_divs[0].id != 'design')_switch = 'Portfolio/';
	
	for(var i = 0 ; i < _divs.length  - 1; i++){
		_divs[i].onclick = function(){location.href = _switch + this.id + '.asp'};
		_divs[i].style.cursor = 'pointer';
		_divs[i].onmouseover = function(){fRollover(this,1,_switch)};
		_divs[i].onmouseout = function(){fRollover(this,0,_switch)};
	}
}

function fRollover(_obj,_flag,_switch){
	var _a = _obj.getElementsByTagName('a')[0];
	(_switch == '')?_switch = '#333':_switch = '#FFB811';
	(_flag)?_a.style.color = _switch:_a.style.color = '#888';
}

window.onload = fCreateIntroNav;