<!--#include file="include/head.asp"-->
<%
if Re("tipo") = "" then
	Set rsDados = objConn.execute("Select * from projetos order by ordem")
else
	Set rsDados = objConn.execute("Select * from projetos where link = '"&Re("tipo")&"'")
end if
titulo = rsDados("titulo")
texto = rsDados("texto")
%>
    <div id="cont_int">
      <div>
        <div id="cont_int_left">
          <div id="brdc">
          	<a href="." title="Home" class="brdc_home">Home</a> | 
            <%
			if local then
			%>
            <a href="projetos.asp" title="Serviços" class="brdc_antr">Serviços</a> | <span class="brdc_actv"><%=rsDados("titulo")%></span>
            <%
			else
			%>
            <a href="projetos/" title="Serviços" class="brdc_antr">Serviços</a> | <span class="brdc_actv"><%=rsDados("titulo")%></span>
            <%
			end if
			%>
            </div>
          <h2 style="line-height:normal; margin-bottom:-15px;"><%=titulo%></h2>
          <div>
			<%=texto%>
		  </div>
          <p></p>
        </div>
        <div id="cont_int_rght">
          <div id="cont_int_rght_sombra">
            <ul>
            <%
			Set rsSubs = objConn.execute("Select * from projetos order by ordem")
			while not rsSubs.eof
			if local then
				link = "projetos.asp?tipo="& rsSubs("link")
			else
				link = rsSubs("link")
			end if
			classe = ""
			if rsSubs("link") = Re("tipo") then
				classe = "class=""menu_int_rght_actv"""
			end if
			%>
              <li><a href="<%=link%>" title="<%=rsSubs("titulo")%>" <%=classe%>><%=rsSubs("titulo")%></a></li>
            <%
			rsSubs.movenext
			wend
			%>
            </ul>
            <!--<img class="imag_mold" src="images/ImagemSobre.jpg" alt="">--> 
            </div>
        </div>
        <%
		Set rsFotos = objConn.execute("Select * from menu_fotos where id_projeto = "&rsDados("id_projeto")&"")
		if not rsFotos.eof then
		%>
        <div class="spacer"></div>
        <h4>Confira algumas fotos:</h4>
        <div id="foto_scrl">
          <script type="text/javascript"> 
			jQuery(document).ready(function() {
			jQuery('#mycarousel').jcarousel();
			});
			$(function() {
				$('#mycarousel a').lightBox();
			});
          </script>
          <ul id="mycarousel" class="jcarousel-skin-tango">
          <%
		  while not rsFotos.eof
		  %>
            <li><a href="images/internas/<%=rsFotos("imagem")%>" title="<%=rsFotos("legenda")%>"><img src="thumb.asp?img=images/internas/<%=rsFotos("imagem")%>" alt="" /></a></li>
          <%
		  rsFotos.movenext
		  wend
		  %>
          </ul>
        </div>
        <%
		end if
		%>
      </div>
    </div>
  </div>
</div>
<!--#include file="include/foot.asp"-->