function JT_init() {

	// This is silly, there are more than one images on the page
  var img_src = "";
  var old_src = "";

	// Used by Das Monk
  jQuery("a.jTip2").mouseover(function() {
		jQuery("#" + this.id + " img.img1").css('display', 'none');
		jQuery("#" + this.id + " img.img2").css('display', 'inline');
	});
	jQuery("a.jTip2").mouseout(function() {
		jQuery("#" + this.id + " img.img1").css('display', 'inline');
		jQuery("#" + this.id + " img.img2").css('display', 'none');																			
  });

  jQuery("a.jTip1").mouseover(function() {
    var over_img_src = jQuery("#" + this.id + "_ img").attr("src");
    var out_img_src  = jQuery("#" + this.id + " img").attr("src");

    jQuery("#" + this.id + " img").attr("src", over_img_src);
    jQuery("#" + this.id + "_ img").attr("src", out_img_src);
  });
	jQuery("a.jTip1").mouseout(function() {
    var out_img_src  = jQuery("#" + this.id + "_ img").attr("src");
    var over_img_src = jQuery("#" + this.id + " img").attr("src");
																			
    jQuery("#" + this.id + " img").attr("src", out_img_src);
    jQuery("#" + this.id + "_ img").attr("src", over_img_src);
  });
		    
	       
}

