(function($) {
	$(document).ready(function() {
		$('.tour_hover').hover(function () {
			var name = $(this).attr('id');
			$('#' + name + '_img').fadeIn('slow');
		},function () {
			var name = $(this).attr('id');
			$('#' + name + '_img').hide();
		});
	});
})(jQuery);