//jQuery.noConflict();

jQuery(document).ready(function() {

	// initialize scrollable
	jQuery("div.scrollable").scrollable();
	
	//Add 3 Steps to Buttons
	jQuery("a.customnext").click(function() {jQuery("div.scrollable").scrollable().move(4);});
	jQuery("a.customprev").click(function() {jQuery("div.scrollable").scrollable().move(-4);});
});


var img_current = 0; 
var total_img = 0;

function showgalleryIMG(imgid) {
	document.getElementById("IMG-" + img_current).style.display = "none";
	document.getElementById("IMG-" + imgid).style.display = "block";
	
	document.getElementById("LEG-" + img_current).style.display = "none";
	document.getElementById("LEG-" + imgid).style.display = "block";
	
	img_current = imgid;
	
	document.getElementById("imgcount").innerHTML = (imgid + 1) + " / " + total_img;
	return false;
}

function showLegende(imgid) {
	//document.getElementById("IMGLAYER-" + imgid).style.display = "block";
}

function hideLegende(imgid) {
	//document.getElementById("IMGLAYER-" + imgid).style.display = "none";
}


