/**
 * Youfact Fx
 * @version		1.0.0
 * @MooTools version 1.12/1.2.x
 * @author	Dragan Todorovic
 * Copyright Youjoomla LLC
 */
//// K2 Item image hover effect
window.addEvent('domready', function () {
  var YfImgFx = $$('.itemImage img,a.subCategoryImage img,.userItemImage img,.catItemImage img');
  YfImgFx.each(function (YfImgFx) {
    var fx = new Fx.Morph(YfImgFx, {
      duration: 500,
      'link': 'cancel'
    });
    YfImgFx.addEvents({
      mouseenter: function () {
        fx.start({
          'opacity': [1, 0.3]
        });
      },
      mouseleave: function () {
        fx.start({
          'opacity': [0.3, 1]
        });
      }
    });
  });
}); //// doom end
