$(function(){
$('<div></div>',{
id:'mask',
css:{
width:$(document).width(),
height:$(document).height(),
position:'absolute',
background:'#000',
left:0,
top:0
}
}).appendTo('body').fadeTo('fast',0.6).click(function(){$(this).fadeOut()})
})