function show() {
	$("#slogan").fadeIn(6000);
}
$(document).ready(function(){
	setTimeout("show()",2000);
});