// JavaScript Document


// lets get it started
function init() {
	menuAddMouseovers();	
}

// convert the top menu links to add mouseovers
function menuAddMouseovers() {
	var mla = $$('#headmenu a img');
	for(i=0; i<mla.length; i++) {
		var img = mla[i];
		img.setAttribute('onmouseover','$(\'headmenudesc\').innerHTML=this.alt');
		img.setAttribute('onmouseout','$(\'headmenudesc\').innerHTML=blogDescription');
		
	}
}

