function getImage(ID){
 	$('#zoomcontainer').html('<div style="text-align:center;padding-top:80px;height:120px;"><img src="typo3conf/ext/ek_show_product_db/res/img/loader.gif"></div>');
	
	$.ajax({
    url: 'index.php?eID=raid&detailsID='+ID,
    type: 'post',
    dataType: 'html',
    timeout: 2000,
    error: function(){
        alert('Error loading document');
    },
    success: function(html){
        
    	$('#zoomcontainer').html(html);
    	$(function() {
			        $("#picturezoom").lightBox();
		});
    }
});
}


function getThumbnails(firstThumb,pidImagesFolder){
 	$('#thumbcontainer').html('<div style="text-align:center";padding-top:15px;><img src="typo3conf/ext/ek_show_product_db/res/img/loader.gif"></div>');
	
	$.ajax({
    url: 'index.php?eID=raid&firstThumbID='+firstThumb+'&pidImagesFolder='+pidImagesFolder,
    type: 'post',
    dataType: 'html',
    timeout: 2000,
    error: function(){
        alert('Error loading document');
    },
    success: function(html){
        
    	$('#thumgallerycontainer').html(html);
    	$(function() {
			        
		});
    }
});
}