
function showBanner() {
	$("#topContainer").slideUp(500, function() {
		$("#moreContent").hide();
		$("#lessContent").show();
		$("#topContainer").slideDown(500);
	});
    return false;
}

function closeBanner() {
    $("#topContainer").remove();
    return false;
}

function showContainer() {
	$("#topContainer").slideUp(500, function() {
		$("#moreContent").show();
		$("#lessContent").hide();
        $("#topContainer").slideDown(500);
    });
}
function pageLoadss() {
    showContainer();
    setTimeout("showBanner()", 5000);
}
