 $(document).ready(function() {
          $(".Item a").mouseover(function() {
		//  alert($(this).parent().find(".TheImage").attr('src'));
			var filepath =   $(this).parent().find("img").attr('src') ;
			var name = $(this).html();
            $("#ImageHolder").html('<img src="' + filepath + '" style="max-width:200px;" /><br /><b>' + name+ '</b>' ); //'<img src="'+ "' />");
          });
        });
