$(document).ready(function(){
	$('#interna .imagem').imageZoom();
	$('.telefone input').mask('(99) 9999-9999');
	// Topo - Inicio
	$('#logo h1').click(function(){ document.location.href = './'; });
	// Topo - Fim
	// Input File - Inicio
	$("input[type=file]").filestyle({ mageheight : 20, imagewidth : 73, width : 325 });
	// Input File - Fim
	// Lancamentos - Inicio
	$('#lancamentos li .texto').click(function(){ if($(this).parent().attr('lang') != ''){ document.location.href = $(this).parent().attr('lang'); } });
	$('#lancamentos li .texto').hover(
		function(){
			$(this).parent().css({'background':'#e3e3e3'});
		},
		function(){
			$(this).parent().css({'background':'none'});
		}
	);
	// Lancamentos - Fim
	// Clube do Eletricista - Inicio
	$('#formFiltro select').selectbox();
	$('#formFiltro #inp_nome').each(function(){
		$(this).val((($(this).val() == '' || $(this).val() == 'Digite o nome')?'Digite o nome':$(this).val()));
	}).focus(function(){
		$(this).val((($(this).val() == 'Digite o nome')?'':$(this).val()));
	}).blur(function(){
		$(this).val((($(this).val() == '')?'Digite o nome':$(this).val()));
	});
	$('#inp_especialidade_container li').click(function(){ $('#formFiltro').submit(); });
	// Clube do Eletricista - Fim
	// Fotos - Inicio
	$('#fornecedores a').lightBox();
//	$('#fornecedores img').each(function(){
//		$(this).css({'cursor':'pointer'});
//		$(this).click(function(){
//			$('#fotoMaior img').attr('src', $(this).attr('src').replace('/mini', ''));
//		});
//	});
	// Fotos - Fim
});
