$(document).ready(function(){

    var popHidePos = $('#popup').css('margin-left');
    var popShowPos = parseInt(popHidePos) - 283 + 'px';
    
    if ($.cookie('popup')!=='seen') {
        setTimeout(function() {
            $('#popup').animate({marginLeft: popShowPos}, 800)
        },500);
    }
    $.cookie('popup', 'seen');
    
    $('.input-button').click(function() {
        $('#popup').animate({marginLeft: popHidePos}, 800);
    });

    $('#pop-left').click(function() {
        if($('#popup').css('margin-left') !== popShowPos) {
            $('#popup').animate({marginLeft: popShowPos}, 800);
        }
        else {        
            $('#popup').animate({marginLeft: popHidePos}, 800);
        }
    });
    $('.hover').hover(function() {
        $(this).css('cursor', 'pointer');
    });
});
