﻿$(document).ready(function () {
    $('.loggedInPromo').click(function () {
        $("#modal-viewrefcode").modal();
        return false;
    });
    $('.loggedInPromo').hover(
        function () {
            //$(this).addClass('out');
            $(this).animate({top: '0'}, 100, 'swing');
        },
        function () {
            //$(this).removeClass('out');
            $(this).animate({ top: '-10' }, 100, 'swing');
        }
    );
    $('.loggedOutPromo').hover(
        function () {
            //$(this).addClass('out');
            $(this).animate({ marginLeft: '-5' }, 100, 'swing');
        },
        function () {
            //$(this).removeClass('out');
            $(this).animate({ marginLeft: '-15' }, 100, 'swing');
        }
    );
    $('.txtRefCode').click(function() {this.select(); } ); });
