var currentPic = 1;
var minPic = 1;



function nextPhoto(){
	if ( currentPic < maxPic ) {
		currentPic++;

/*		alert(picFull[currentPic]);
		alert(picFiles[currentPic]);
		*/
		$('a#photo-full').attr({
			href: 'upload/images/gallery/' + picFull[currentPic-1]
		})

		$('img#photo-thumbnail').replaceWith('<img src="upload/images/gallery/'+picFiles[currentPic-1] + '" id="photo-thumbnail" width="457" height="262" alt="" />');

		if ( $("a#left-arrow").css("display", "none") ) { $("a#left-arrow").show(); }

		if ( currentPic == maxPic) { $("a#right-arrow").hide(); }
	}
};




function prevPhoto(){
	if ( currentPic > minPic ) {
		currentPic--;

		$('a#photo-full').attr({
			href: 'upload/images/gallery/' + picFull[currentPic-1]
		})

		$('img#photo-thumbnail').replaceWith('<img src="upload/images/gallery/'+picFiles[currentPic-1] + '" id="photo-thumbnail" width="457" height="262" alt="" />');

		if ( $("a#right-arrow").css("display", "none") ) { $("a#right-arrow").show(); }

		if ( currentPic == minPic) { $("a#left-arrow").hide(); }
	}
};