// JavaScript Document

function galleryNext(gallery,maxNum) {

	gallery = 'general';
	maxNum = 18
	if (eventType == 'corporate') {
		gallery = 'corporate';
		maxNum = 6
		
	}
	
	if (eventType == 'weddings') {
		gallery = 'wedding';
		maxNum = 7
		
	}

	currentNum = document.getElementById('galleryPhoto').value;
	nextnum = parseInt(currentNum) + 1;
	if (nextnum>maxNum) {
		nextnum = 1;
	}
	
	document.getElementById('galleryImage').src='/images/galleries/'+gallery+'/'+nextnum+'.jpg';
	document.getElementById('galleryPhoto').value = nextnum;
	document.getElementById('galleryLink').href='/images/galleries/'+gallery+'/'+nextnum+'.jpg';
}

function galleryPrev(gallery,maxNum) {
	gallery = 'general';
	maxNum = 18
	if (eventType == 'corporate') {
		gallery = 'corporate';
		maxNum = 6
		
	}
	
	if (eventType == 'weddings') {
		gallery = 'wedding';
		maxNum = 7
		
	}
	
	currentNum = document.getElementById('galleryPhoto').value;
	nextnum = parseInt(currentNum) - 1;
	if (nextnum<1) {
		nextnum = maxNum;
	}
	
	document.getElementById('galleryImage').src='/images/galleries/'+gallery+'/'+nextnum+'.jpg';
	document.getElementById('galleryPhoto').value = nextnum;
	document.getElementById('galleryLink').href='/images/galleries/'+gallery+'/'+nextnum+'.jpg';
}