function scene1(){
	Preload.load('/images/arrow_goback_main.gif', '/images/arrow_previous.gif', '/images/arrow_on.gif', '/images/bg_content.gif');
	//new Effect.Appear('shoppingBag', {duration:3.0});
	new Effect.Appear('navi', {duration:3.0});
	new Effect.Appear('options', {duration:4.0});
	new Effect.Appear('content', {duration:6.0});
}
window.onload = function(){
	Preload.onComplete = scene1;
	Preload.load('/images/loading.gif', '/images/bg_homepage.jpg', '/images/logo.png', '/images/bg_keyword.gif', '/images/button_search.gif', '/images/icon_checkout.gif');
	//Element.hide('wrap');
	Element.hide('currency');
	//Element.hide('shoppingBag');
	Element.hide('content');
	Element.hide('navi');
	Element.hide('options');
	new Effect.Appear('wrap', {afterFinish:checkLoadImage});
}
