﻿$(function() {
        try {
            //set initial styles
            //$('.animated_thumbnail_wrap li .animated_bg').css({ width: '95px', top: '5px' });
            $('.item .animated_bg').css({ width: '95px', top: '5px' });
            //handle hover event
            //$('.animated_thumbnail_wrap li').hover(function() {
            $('.item').hover(function() {
                $("> div.animated_bg", this).animate({ width: '109px', top: '-3px' }, 150);
                $(this).addClass("fakeHover");
            }, function() {
                $("> div.animated_bg", this).animate({ width: '95px', top: '5px' }, 150);
                $(this).removeClass("fakeHover");
            });
        } catch (ex) { }

    });

