﻿// JScript File

jQuery(document).ready(function()

    {

        initAnime();   
        jQuery('#close_box_new').click(function () {
        jQuery('#animBulletin').fadeOut("slow");
        return false;
        });
    }
    

);
function initAnime(){

    jQuery('#animBulletin').animate({
    "top": "30%"
    }, 1500);
}
