$(document).ready(function() {
    $('.image-gallery').jcarousel({ 
    	visible: 10,
    	scroll: 10,
    	buttonNextHTML: '<div><div class="jcarousel-next-button"></div></div>',
    	buttonPrevHTML: '<div><div class="jcarousel-prev-button"></div></div>'
    });
    
    $.supersized({
		slides: supersizedSlides, 
		vertical_center: 0
	});
    
    $('.show-image').live('click', function(){
    	var tmp = $(this).attr("id").split("-");
    	var id = tmp[1];
    	
    	
    	$.ajax({  
			url: "/system/ajax/get-gallery-image/",  
			data: { id: id },
			type: "POST",
			success: function(data) { 
				$('#image-container').html(data);				
			}  
		}); 
    	return false;
    });
    
    var cloned = $('#menu-footer').clone();
    $('body#Gallery #footer').html('<div class="center gallery-footer"></div>');
    cloned.appendTo('.gallery-footer');
});
