$(function(){

	$('#content_p').hide();

	$(document).ready(function(){


				setTimeout(function() {
					$('#banner').fadeOut(500);
				}, 500);
				setTimeout(function() {
					$('#content_p').fadeIn(500);
				}, 1000);



		return false;
	});
});
