<!--
// image over
$(document).ready(function() {
	$("img.over").each(function() {
		this.onmouseover = function() {
			this.src = this.src.replace(/(.*)\.(\S+)$/, "$1_o.$2" );
		}
		this.onmouseout = function() {
			this.src = this.src.replace(/(.*)_o\.(\S+)$/, "$1.$2" );
		}
	});
});


//-->
