$(function() {
    if ($('*').is('a[rel="fancybox"]')) { 
        $('a[rel="fancybox"]').fancybox(); 
    } 
    
    
    $('.jq_gallery').click(function(){
    	    	
    	var match = this.id.match(/gallery_([0-9]*)_([0-9]*)/);
    	
    	if(match.length != 3){
    		return false;
    	}
    	
    	getPhotos(match[2], match[1] - 1);
    	
      return true;
    });

});

	function getPhotos(gallery, idx){	
		
		$.ajax({
    		url: '/dynamic',
    		type: 'post',
    		data: {'gallery_id': gallery},
    		dataType: 'json',
    		success: function(data, status){    			
    			if( data.status && data.photos && data.photos.length){
    				showGallery(data.photos,{
    					type: 'image', 
    					index : idx 
    				});    				
    			}    			
    		}    		
    	});
	
	}

	function showGallery(photos, opt){	
		
		$.fancybox(photos, opt);	
		
	}