$(document).ready(function(){    
    
    //Init lightbox
    $('#image_gallery a').lightBox({fixedNavigation:true});
    
    //Add nav    
    $('#image_gallery').after('<ul id="gallery_nav">'+
           '<li id="previous"><a href="#"><img src="/_resx/images/gallery/bt_photo_next.gif" /></a></li>'+
           '<li id="next"><a href="#"><img src="/_resx/images/gallery/bt_photo_previous.gif" /></a></li>'+
           '<li id="enlarge"><a href="#"><img src="/_resx/images/gallery/bt_enlarge.gif" /></a></li>'+
                    	'</ul>'
    )
    
    // Add cycle
    $('#image_gallery').cycle({ 
    prev:   '#previous', 
    next:   '#next', 
    timeout: 4000,
    pause: 1 
    });
    
    //Enlarge
    $("#enlarge a").click(function () {
      $("#image_gallery li:visible").find("a").trigger('click');
    });
       
});