$(document).ready(function(){
 
    $("div.disclaimer_popup a.popup").click(function() {
        $(this).next("div.disclaimer").stop(true, true).animate({opacity: "show"}, "slow");
        return false;
    });
    $("div.disclaimer_popup a.close").click(function() {
        $(this).parent("div.disclaimer").stop(true, true).animate({opacity: "hide"}, "fast");
        return false;
    });
 
});

