jQuery(document).ready(function() {
	$("img[id^='img']").bind('mouseover', function(e) {
		var tm_str = '';
		var img = '';
		var body = $('body');
		id = this.id.replace('img', '');
		img = $('#photo');
		img.attr('src', '/image/catalog/'+id+'.jpg');
		img.css('left', (e.pageX + 10)+'px');
		if(parseInt($(window).height())-parseInt(e.pageY) <= parseInt(img.css('height'))) {
			img.css('top', (parseInt(e.pageY) - parseInt(img.css('height')))+'px');
		} else {
		  img.css('top', e.pageY+'px');
		}
		//img.css('display', 'block');
		img.animate({
	    	"opacity": "show" 
	       }, 800);
	});
	$("img[id^='img']").bind('mouseout', function(e) {
		//img.stop(true, true);
	    //div.css('display', 'none');

		$('#photo').css('display', 'none').attr('src', '/image/0.gif');
	});
	
});

