$(document).ready(function() {

	$('.light').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.8,
		imageLoading: 'http://localhost/Forever/trunk/imagens/loadingAnimation.gif',
		imageBtnClose: 'http://localhost/Forever/trunk/imagens/lightbox-btn-close.gif',
		imageBtnPrev: 'http://localhost/Forever/trunk/imagens/lightbox-btn-prev.gif',
		imageBtnNext: 'http://localhost/Forever/trunk/imagens/lightbox-btn-next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Imagem',
		txtOf: 'de'
	   });

	over();

	$("#selEstado").load(httpRoot+"/gestaoFLP/util/estado.php",estadoCarregado);

});
var estado ='';
var cidade = '';

over = function() {

	var itens = document.getElementById("for-menud").getElementsByTagName("LI");

	for (var i=0; i<itens.length;i++) {

		itens[i].onmouseover=function() {
			this.className += " over";
		}
		itens[i].onmouseout=function() {
			this.className = this.className.replace(new RegExp(" over\\b"), "");
		}
	}

};

var estadoCarregado = function () {
	$("#estado").bind('change',function(){
		var estado = $(this).val();
		$("#selCidade").load(httpRoot+"/gestaoFLP/util/cidade.php?estado="+estado+"&cidade="+cidade);
	});
};