﻿$(function() {
    $('.project-preview-down').hover(function() {
        $(this).find('img').animate({ top: '182px' }, { queue: false, duration: 500 });
    }, function() {
        $(this).find('img').animate({ top: '0px' }, { queue: false, duration: 500 });
    });
    $('.project-preview-left').hover(function() {
        $(this).find('img').animate({ left: '-300px' }, { queue: false, duration: 500 });
    }, function() {
        $(this).find('img').animate({ left: '0px' }, { queue: false, duration: 500 });
    });
    $('.project-preview-right').hover(function() {
        $(this).find('img').animate({ left: '300px' }, { queue: false, duration: 500 });
    }, function() {
        $(this).find('img').animate({ left: '0px' }, { queue: false, duration: 500 });
    });
});
