$(document).ready(function() {

 e_source = '(window.navigator.userAgent.indexOf("Gecko") != -1) ? e.target : window.event.srcElement;';
 is_moving = "true";
 posX = 0;
 posY = 0;
 document.onmousemove=moveObj;

function moveObj(e)
	{    var obj = document.getElementById(window.is_moving);
		var _left = (window.navigator.userAgent.indexOf("Gecko") != -1) ? e.pageX : window.event.x + document.body.scrollLeft;
		var _top = (window.navigator.userAgent.indexOf("Gecko") != -1) ? e.pageY : window.event.y + document.body.scrollTop;

		_left = _left - window.posX - 360;
		tip.style.left = _left;
		_top = ((_top - window.posY - 270)>document.body.scrollTop)? (_top - window.posY - 270):_top - window.posY - 2;
		tip.style.top = _top;
		
		
	}

 function tipshow(target) {
   if (document.getElementById) {
   target = document.getElementById(target);
   }
   target.style.display = "";
}

 function tiphide(target) {
   if (document.getElementById) {
   target = document.getElementById(target);
   }
   target.style.display = "none";
}

$('img.img1').mouseover(function() {
tipshow('tip'); tipimg.src=$(this).attr('full');

	});
$('img.img1').mouseout(function() {
tiphide('tip'); tipimg.src='/images/0.gif';
	});
});
