function nextClick(gallerySize, gallerySet, currentPic) {
	if ((currentPic + 1) <= gallerySize) {
		currentPic = currentPic + 1;
		$("div#gal_pic").html('<img src="images/' + gallerySet + '/' + currentPic + '.jpg" />');
		//$("#galleryImage").attr("src", 'images/' + gallerySet + '/' + currentPic + '.jpg');
		//alert($("#galleryImage").src())
		$("span#num_counter").html(currentPic);
		return currentPic;
	} else {
		currentPic = 1;
		$("div#gal_pic").html('<img src="images/' + gallerySet + '/' + currentPic + '.jpg" />');
		$("span#num_counter").html(currentPic);
	}
	return currentPic;
}

function prevClick(gallerySet, currentPic) {
	if ((currentPic - 1) > 0) {
		currentPic = currentPic - 1;
		$("div#gal_pic").html('<img src="images/' + gallerySet + '/' + currentPic + '.jpg" />');
		//$("#galleryImage").attr("src", 'images/' + gallerySet + '/' + currentPic + '.jpg');
		$("span#num_counter").html(currentPic);
		return currentPic;
	
	} else {
		currentPic = currentPic;
	}
	return currentPic;
}

function unsetHighlights() {
	$("span#invitation_btn").html('<img src="images/buttons/invitation.jpg"/>');
	$("span#wedding_btn").html('<img src="images/buttons/wedding.jpg"/>');
	$("span#emerald_btn").html('<img src="images/buttons/emerald_birthday.jpg"/>');
	$("span#history_btn").html('<img src="images/buttons/place_in_history.jpg"/>');
	$("span#bacchanale_btn").html('<img src="images/buttons/bacchanale.jpg"/>');
	$("span#hub_btn").html('<img src="images/buttons/hub.jpg"/>');
	$("span#mill_creek_btn").html('<img src="images/buttons/mill_creek.jpg"/>');
	$("span#sapphire_btn").html('<img src="images/buttons/sapphire.jpg"/>');
	$("span#szarko_wedding_btn").html('<img src="images/buttons/szarko_wedding.jpg"/>');
	$("span#stollery_2008_btn").html('<img src="images/buttons/stollery_2008.jpg"/>');
	$("span#stollery_2009_btn").html('<img src="images/buttons/stollery_2009.jpg"/>');
	$("span#beauty_btn").html('<img src="images/buttons/beauty.jpg"/>');
}
