// JavaScript Document

$(document).ready(function() {
	bindFotos();
});


function bindFotos() {
	$oSelect = document.getElementById("festa");
	$oSelect.onchange = function() {
		oSel = this.options[this.selectedIndex];
		loadFotos(oSel.value);
	}
}

function loadFotos(iFesta) {
	window.location = "fotos.php?festa=" + iFesta;
}