﻿$(function(){
    // Homeitem
    $(".homeItem").hover(function(){
        $(this).find(".homeItemImg .homeImg").stop(true, true).fadeOut();
        $(this).find(".homeItemBg").stop(true, true).fadeIn();
    },
    function(){
        $(this).find(".homeItemImg .homeImg").stop(true, true).fadeIn();
        $(this).find(".homeItemBg").stop(true, true).fadeOut();
    });
});
