var $j = jQuery.noConflict();

// Process Page load

$j(document).ready(function(){
  $j(".Produkt").each(function(i){
    var Title = $j("a:first",this).attr("title");
    if (Title != "" && Title != null)
    {
      $j("a:first",this).attr("alt", Title).attr("title", "").hover(function(){
        ShowImage($j(this).attr("alt"));
      });
    }
  })
});

// Replace image
function ShowImage(ImageName){
  $j("#ProductImage").attr("src", "/Portals/0/Content/Produkte/" + ImageName);
}