// JavaScript Document

Event.observe(document,'dom:loaded',init_ww_documents);

function init_ww_documents() {
		$$('.documents_download').each ( function(n) { 
			n.observe('mouseover',	ww_documentssetbg.bindAsEventListener(n));
			n.observe('mouseout',	ww_documentsdelbg.bindAsEventListener(n));
		});
		
}

function ww_documentssetbg() {
	if (this.down('a').href == 'http:/#') {
		this.down('a').href = '#';
	} 
	
	if (this.down('a').href.indexOf('#')==-1) {
		this.setStyle({backgroundImage: 'url(/img/document_download_background.gif)'});	
	}
}
function ww_documentsdelbg() {
	this.setStyle({backgroundImage: 'none'});
}