/* beginning of reCAPTCHA styling */
var RecaptchaOptions = { theme : 'clean' };
/* end of reCAPTCHA styling */

/* beginning of dl cover show script */
function dlcoverShow(row,img,dir,w,h) {
	document.images["cover_"+row].src = "http://"+document.domain+dir+Url.decode(img);
	document.images["cover_"+row].width = w;
	document.images["cover_"+row].height = h;
	document.images["cover_"+row].alt = img;
	document.images["cover_"+row].className = 'border';
}
/* end of dl cover show script */

/* beginning of feeds +/- image swap */
function plusminusSwap(plusminus) {
	if ( document.images[plusminus].src == "http://"+document.domain+"/img/plus.gif" ) {
		 document.images[plusminus].src = "http://"+document.domain+"/img/minus.gif";
	} else {
		 document.images[plusminus].src = "http://"+document.domain+"/img/plus.gif";
	}
}
/* end of feeds +/- image swap */