
$(document).ready(function(){


    $('#iframe').load(function() {
        
        $('#iframe').contents().find('#openGallery').hover(function(){
        
            $('#iframe').contents().find('.galleryFullscreen').css('display','block');
        
        }, function(){
            $('#iframe').contents().find('.galleryFullscreen').css('display','none');
        });

        $('#iframe').contents().find('#gallery a').lightBox();
        $('#iframe').contents().find('#openGallery').click(function(){
            $('#iframe').contents().find('.lightbox:first').click();
            return false;
        }); 
 
        
        
        
    });

    


});

