	
	var bg_image = 0;
	
	$(window).load( function ()
	{
		//$('#bgimage').bind('load', function (){  alert('x'); } );
		
		body_resize();
		index_slider();
	});
	
	$(window).resize( function ()
	{
		body_resize();
	});
	
	
	

	
	function index_slider()
	{
		var logo = $('#index_logo');
		var bg = $('#index_bg');
		
		if (!bg) return;
		
		
		logo.delay(1000).fadeIn(3000, function()
		{
			bg.delay(1000).fadeOut(3000);
		});
	}
	
	
	function body_resize()
	{
		var bgimage = $('#bgimage');
		
		bgimage.css('top', 0).css('left', 0).width('').height('');
		

		if ( ($(window).width() / $(window).height()) > (bgimage.width()/bgimage.height()) )
		{
			bgimage.width( $(window).width() );
		}else{
			bgimage.height( $(window).height() );
		}
		
		if ( bg_image == 0 )
		{
			bgimage.fadeIn();
			bg_image = 1;
		}

	}
	

