function SwapImage(ImageName,ImageFile){
         Image1=new Image(119,39);
         Image1.src = ImageFile;
         document[ImageName].src = Image1.src;
         return true;
}

$(document).ready(function(){
	$('.oneTippShadow').each(function(index) {
    	$(this).mousemove( function(e) {
      		$('#label').css("top", (20+e.pageY)+"px");
      		$('#label').css("left", (20+e.pageX)+"px");
   		});
        $(this).attr('alt', '');
  	});
});

function showName(name) {
	$('#label').empty();
	$('#label').append(name);
	$('#label').show();
}

function hideLabel() {
	$('#label').hide();
}
