$(document).ready(function(){
		$(".reiter").mouseover(
			function() {
				//console.dir(this);
				$("#"+this.id+" img.out").addClass('hide');
				$("#"+this.id+" img.over").removeClass('hide');
			}
		);
		
		$(".reiter").mouseout(
			function() {
				$("#"+this.id+" img.out").removeClass('hide');
				$("#"+this.id+" img.over").addClass('hide');
			}
		);

});
