

$(document).ready(function(){
		

	var h =	$(document).height();
	
	$('div#banner-bg').css('height', h + 'px');

	$('div#banner').click(function(){
	
		$('div#banner-wrap').hide();
	});

});


