//scripts.js

//feature link mouseover
function mouseoverFeature(id){
	swapClass(id + 'title','featureTitleOver');
	swapClass(id + 'body','featureBodyOver');
}
function mouseoutFeature(id){
	swapClass(id + 'title','featureTitle');
	swapClass(id + 'body','featureBody');
}

//swap class
function swapClass(id, newclass){
	document.getElementById(id).className = newclass;
}

function blur2(obj){
	if((navigator.appName).indexOf('Netscape') == -1) obj.blur();
}