/**
* loadGalleryDetail() - Sends an AJAX Request to show the Detail
*/
function loadGalleryDetail(picId, pageId) {
  	var picCnt = $('#picCnt').html();
  	var splitPic = picId.split("_");
  	$.ajax({
    	url: '/picGallery.php?view=detail' + '&pic=' +  picId + '&page=' + pageId,
        cache: false,
        type: "POST",
        success: function(html) {
            $('#getContentDiv').html(html);
            loadjCarousel(splitPic[0], picCnt-1);
        }
    });
}

function loadjCarousel($startPic, $picCnt)
{
	$('#mycarousel_' + $startPic).jcarousel({
		start: $startPic,
		size: $picCnt
	});
}
