﻿jQuery(document).ready(function () {

    $('#categoryShopping').hover(function () {
        $(this).children('.front').stop().animate({ 'top': '150px' }, 500);
    }, function () { $(this).children('.front').stop().animate({ 'top': '0px', 'left': '0px' }, 500); });

    $('#categoryExperiences').hover(function () {
        $(this).children('.front').stop().animate({ 'top': '150px' }, 500);
    }, function () { $(this).children('.front').stop().animate({ 'top': '0px', 'left': '0px' }, 500); });

    $('#categoryChequeRebate').hover(function () {
        $(this).children('.front').stop().animate({ 'top': '150px' }, 500);
    }, function () { $(this).children('.front').stop().animate({ 'top': '0px', 'left': '0px' }, 500); });

    $('#categoryMerchandise').hover(function () {
        $(this).children('.front').stop().animate({ 'top': '150px' }, 500);
    }, function () { $(this).children('.front').stop().animate({ 'top': '0px', 'left': '0px' }, 500); });

    $('#categoryHoliday').hover(function () {
        $(this).children('.front').stop().animate({ 'top': '150px' }, 500);
    }, function () { $(this).children('.front').stop().animate({ 'top': '0px', 'left': '0px' }, 500); });
});


