        $(function() {
            function launch() {
                 $('#movie').lightbox_me({centered: true, onLoad: function() { $('movie_btn').find('input:first').focus()}});
            }
            
            $('#movie_btn').click(function() {
                $("#loader").lightbox_me({centered: true});
                setTimeout(launch, 10);
                return false;
            });
            
        });
		
        $(function() {
            function launch() {
                 $('#box').lightbox_me({centered: true, onLoad: function() { $('box_btn').find('input:first').focus()}});
            }
            
            $('.box_btn').click(function() {
                $("#loader").lightbox_me({centered: true});
                setTimeout(launch, 10);
                return false;
            });
            
        });
		
		

