
function init_listing(){
	if (document.getElementById || document.all) {
		var el = document.getElementById? document.getElementById('listing'): document.all['listing'];
	}
	if (!el) return false;
	
	var h = document.getElementById? document.getElementById('listing-description'): document.all['listing-description'];
	var a = document.getElementById? document.getElementById('active-href'): document.all['active-href'];
		
	var c = 'Select a thumbnail below &#187;';	
	h.innerHTML = c;
	
	var sf = el.getElementsByTagName("a");
	for (var i=0; i<sf.length; i++){
		sf[i].onmouseover = function(){
			var t = this.getAttribute('title');
			h.innerHTML = t;
		}
		sf[i].onmouseout = function(){
			h.innerHTML = '';
		}
	}
}

addLoadEvent(init_listing);