//
var imglista={
	imgLista1:[],
	imgLista1Legenda:[],
	imgListaPos:0,
	imgltE:[],
	imgltELegenda:[],
	imgltEOriginal:[],
	ltE:0,
	imgltC:[],
	imgltCLegenda:[],
	imgltCOriginal:[],
	ltC:0
};


// Init
function initSite(){
	buttonOver();
	initLoading();
	initLightBox();
	headerMenu();
	getimg();
	$('button.posta_contato').click(function(e){PostarContato();});
	$('img.trocaImgL').click(function(e){mudaImg(-1);});
	$('img.trocaImgR').click(function(e){mudaImg(1);});
	//
	$('img.trocaImgLh').click(function(e){mudaImgD(-1,$(this).attr('tipo'));});
	$('img.trocaImgRh').click(function(e){mudaImgD(1,$(this).attr('tipo'));});
}

function initLightBox(){
	var initLB={
		imageBlank: _index.dir+'/jquery/js/jquery-lightbox-0.5/images/lightbox-blank.gif',
		imageLoading: _index.dir+'/jquery/js/jquery-lightbox-0.5/images/lightbox-ico-loading.gif',
		imageBtnClose: _index.dir+'/jquery/js/jquery-lightbox-0.5/images/lightbox-btn-close.gif',
		imageBtnPrev: _index.dir+'/jquery/js/jquery-lightbox-0.5/images/lightbox-btn-prev.gif',
		imageBtnNext: _index.dir+'/jquery/js/jquery-lightbox-0.5/images/lightbox-btn-next.gif',
		txtImage: 'Imagem',
		txtOf: 'de'
	}
	$('a.ltE').lightBox(initLB);
	$('a.ltC').lightBox(initLB);
}

function mudaImgD(v,t){
	var i=0;
	if(imglista['img'+t].length==0){
		$('img[class='+t+' imgItem borda]').each(function(a,b){
			imglista['img'+t][i]=b.src;
			imglista['img'+t+'Legenda'][i]=b.title;
			//imglista['img'+t+'Original'][i]=$(b).attr('ori');
			i++;
		});
	}
	var nPos=imglista[t]+(v);
	if(nPos==-1)nPos=imglista['img'+t].length-1;
	if(nPos==imglista['img'+t].length)nPos=0;
	imglista[t]=nPos;
	$('img[class='+t+' imgItem borda]').attr('src',imglista['img'+t][imglista[t]]);
	$('div[tipo='+t+']').html(imglista['img'+t+'Legenda'][imglista[t]]);
	//$('a[tipo='+t+']').attr('href',imglista['img'+t+'Original'][imglista[t]]);
}

function mudaImg(v){
	var nPos=imglista.imgListaPos+(v);
	if(nPos==-1)nPos=imglista.imgLista1.length-1;
	if(nPos==imglista.imgLista1.length)nPos=0;
	imglista.imgListaPos=nPos;
	$('img.imgItem').attr('src',imglista.imgLista1[nPos]);
	$('div.legenda').html(imglista.imgLista1Legenda[nPos]);
}

function headerMenu(){
	$('div.n2').click(function(e){vai(1);});
	$('div.n3').click(function(e){vai(3);});
	$('div.n4').click(function(e){vai(4);});
	$('div.n5').click(function(e){vai(5);});
	$('div.n6').click(function(e){vai(6);});
	$('img.contatoheader').click(function(e){location=_index.dir+'/contato/';});
	$('img.homeheader').click(function(e){location=_index.dir+'/';});
	$('img.okheader').click(function(e){Postar();});
}

function getimg(){
	var img=new Array('home03.jpg','home04.jpg','home05.jpg','home06.jpg','home07.jpg','home08.jpg','home09.jpg','home10.jpg','home11.jpg','home12.jpg','home13.jpg');
	var rnd=Math.floor(Math.random()*img.length);
	var f=$('img.imgheader');
	f.attr("src",_index.dir+'/img/random/'+img[rnd]);
}

function vai(v){
	location=_index.dir+'/ceats/?eid='+v;
}

// Busca Posta
function Postar(){
	var frm=$('#formBusca');
	frm.submit();
}

// Contato Posta
function PostarContato(){
	var frm=$('#formContato');
	if(frm.valida())frm.submit();
	else alert('Preencha o(s) campo(s) com *.');
}