function doLinkHoverStyle(objCaller, bHover) {
	var arrA = objCaller.parentNode.getElementsByTagName('a');
	var objA = null;
	
	for (var i = 0; i < arrA.length; i += 1) {
		if (arrA[i].className == 'detail') {
			objA = arrA[i];
			break;
		}
	}
	
	if (objA) {
		if(bHover) {
			objA.style.color = '#999999';
			objA.style.textDecoration = 'underline';
		}
		else {
			objA.style.color = '#36596f';
			objA.style.textDecoration = 'none';			
		}
		
		objA.onmouseover =
			function(e) {
				this.style.color = '#999999';
				this.style.textDecoration = 'underline';
				MM_swapImage(objCaller.getElementsByTagName('img')[0].id,'',objCaller.getElementsByTagName('img')[0].src.replace('01.gif','02.gif'),1);
			}

		objA.onmouseout =
			function(e) {
				this.style.color = '#36596f';
				this.style.textDecoration = 'none';
				MM_swapImgRestore();
			}	
	}
}