﻿$(document).ready(function() {

    //EXTERNAL LINK
    $("#ExternalLinkDoors").bind("mouseenter", function() {
        $(this).animate({ 'margin-left': 0 }, { "duration": 300, "easing": "easeOutCubic", queue: false });
    }).bind("mouseleave", function() {
        $(this).animate({ 'margin-left': 85 }, { "duration": 300, "easing": "easeOutCubic", queue: false });
    });
    $("#ExternalLinkH2o").bind("mouseenter", function() {
        $(this).animate({ 'margin-left': 0 }, { "duration": 300, "easing": "easeOutCubic", queue: false });
    }).bind("mouseleave", function() {
        $(this).animate({ 'margin-left': 85 }, { "duration": 300, "easing": "easeOutCubic", queue: false });
    });
    $("#ExternalLink3D").bind("mouseenter", function() {
        $(this).animate({ 'margin-left': 0 }, { "duration": 300, "easing": "easeOutCubic", queue: false });
    }).bind("mouseleave", function() {
        $(this).animate({ 'margin-left': 85 }, { "duration": 300, "easing": "easeOutCubic", queue: false });
    });

});
