
function setUpGallery() {
	jQuery(function() {
		$("#gallery-carusel").jCarouselLite({
			btnNext: "#next",
			btnPrev: "#prev",
			visible: 4,
			circular: false
		});
	});
}

function setGalleryPicture(pic) {
	//var image = document.getElementById("big_photo");
	//image.src = pic;
	jQuery('#big_photo').attr('src', pic);
}

