function replaceImage(img)
{
	if(img.width == '1' && img.src.match(/\.01\./)){
//		img.src = '/images/no-image.gif';
		img.parentElement.style.visibility = "hidden";
		img.parentElement.style.display = "none";
	}else if(img.src == ""){
//		img.src = '/images/no-image.gif';
		img.parentElement.style.visibility = "hidden";
		img.parentElement.style.display = "none";
	}else if(img.width == '1'){
		img.src = img.src.replace('.09.','.01.');
	}else if(img.fileSize == -1){
		img.parentElement.style.visibility = "hidden";
		img.parentElement.style.display = "none";
	}
}
function resizeImage(img)
{
	if(130 < img.width){
		img.width = 130;
	}
}


var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
var pageTracker = _gat._getTracker("UA-1135811-2");
pageTracker._trackPageview();
} catch(err) {}


