$(function(){
    var images = [ ];
    
    $('img').each(function(){
        images.push( $(this).attr('src'));
    });
    
    $('#close_inner_box').bind('click', function(e){
        e.preventDefault();
        close_intro_text(0);
    });
    $('#open_inner_box').bind('click', function(e){
        e.preventDefault();
        open_intro_text(0,3000);
    });
    
    $('#image_box_out').hover(
        function(e){
            e.preventDefault();
            open_intro_text(0,0);
        },
        function(e){
            e.preventDefault();
            close_intro_text(0);
        }
    );

	$( { } ).imageLoader( { 
        images: images,
        async: true,
        allcomplete: function( e, ui ) { 
             
             intro()
            
        }
    } );
});
