( function($) {

	$(document).ready(function () {
		setTimeout(RunJS, 1000);
	});
	
	function RunJS() {
		$('.noticebox').slideDown('slow');	
	}

} ) ( jQuery );
