// JavaScript Document
function banner1(){
	banner_stop=1;
	hide_all(function() {
		$('#banner1').fadeIn(3000,function() {
			setTimeout('go_2()',3500);
		});
	});
}

function go_2(){
	if (banner_stop==1)  {
		banner2();
	}
}
