jQuery(document).ready(function(){
	
		jQuery("#nl").animate({
     		bottom:0
		},8000, function() {
     		// Animation complete.
		});
	
	jQuery("#field_11").click(function(){
		jQuery("#nl_bg").animate({
     		bottom:0
		},600, function() {
     		// Animation complete.
		});
	});
	jQuery("#nl_hide").click(function(){
		jQuery("#nl").hide();
	});
});
