/* Copyright (C) 2002-2011 by Home of the Brave
   Web http://home.of.the.brave.de
   E-Mail info@brave.de */
/* $Revision: 1.1 $ $Date: 2011/07/27 15:23:47 $ */

/*
 * Associate download links with images.
 * dependencies: BodyEvents
 * owner: Simon.Leidig@brave.de
 *
 */

BodyEvents.addListener('load',function () {
	var imgs = document.getElementsByTagName('img');
	for (var i = 0; i < imgs.length; i++) {
		var n = imgs[i];
		if ( !n.className						||
			 !n.className.match(/\bregular\b/)
		) continue;
		var a = n.parentNode.nextSibling;
		while (a && a.nodeType != 1) a = a.nextSibling;
		if ( !a									||
			 a.nodeName.toLowerCase() != 'a'	||
			 !a.className						||
			 !a.className.match(/\bdownload\b/)
		) continue;
		n.parentNode.replaceChild( a = a.cloneNode(false), n );
		a.appendChild(n);
	}
} );

