// JavaScript Document
$(function(){
$("#ad").animate({
height: 'toggle', opacity: 'toggle'
}, 4000);

$("a.close").click(function(){
$("#ad").animate({
height: 'toggle', opacity: 'toggle'
}, 2000);
})
})

