(function($){
$(document).ready(function(){
    var COOKIE_NAME = "lf_iphone_app_unnotify";
    $("p.app_store a.close").click(function(e){
        $('p.app_store')
            .slideUp(400);
        $("#advertLEADERBOARD").animate({top: '40px'}, 400);
        // Set a session cookie to not show this strip
        $.cookie(COOKIE_NAME, 'Y');
        e.preventDefault();
    });

    $("p.app_store a.promo").click(function(e){
        // Set a permanent cookie to not show this strip
        $.cookie(COOKIE_NAME, 'Y', { expires: 400 });
    });

    if ($("p.app_store").length != 0) {
        $("#advertLEADERBOARD").css('top', '84px');
    }
});
})(jQuery);


