
$(document).ready(function () {
        $('#headerleft').hide();
	setTimeout(function() { $('#headerleft').show(3000) }, 2500);

        $('#sidebar li').hide();
	setTimeout(function() { $('#sidebar li').show(3000) }, 2500);
});

