function linksSet(){
	var divs = document.getElementsByTagName('DIV');
	for (var i = 0; i < divs.length; i++){
		var d = divs[i];
		if (d.className == 'grip_link'){
			var ds = d;
			while(ds.nextSibling){
				ds = ds.nextSibling;
				if (ds.tagName == 'A'){
					d.href = ds.href;
				}
			}
			d.style.cursor = 'pointer';
			d.onmouseover = function(){
				// This doesn't work in firefox, editing the window status is off by default
				window.status = this.href;
			}
			d.onmouseout = function(){
				window.status = window.defaultStatus;
			}
			d.onclick = function(){
				window.location = this.href;
			}
		}
	}	
}
window.onload = linksSet;