var tamanhoTela = document.getElementsByTagName("html")[0].offsetWidth;

if(tamanhoTela > 481)
{

    $(document).ready(function(){
			
			$("#menu_principal ul li a span").hide();
			$("#menu_secundario ul li a span").hide();
			
			$("#plantas_ap").hide();
			
			abre_terreo();
			
			$("#menu_principal ul li a").hover(
				function(){
					$(this).find("span").stop(true,true).fadeIn(300);
				}
				,
				function(){
					$(this).find("span").stop(true,true).fadeOut(1000)
				}
			);
			
			
	
			$("#menu_secundario ul li a").hover(
				function(){
					$(this).find("span").stop(true,true).fadeIn(150);
				}
				,
				function(){
					$(this).find("span").stop(true,true).fadeOut(150)
				}
			);
			
			
			
			
			
			function abre_terreo()
			{
				$(".bt_terreo").css('font-size','18px');
				$(".bt_ap").css('font-size','12px');
				$("#plantas_terreo").show();
				$("#plantas_ap").hide();
			}
			
			function abre_ap()
			{
				$(".bt_ap").css('font-size','18px');
				$(".bt_terreo").css('font-size','12px');
				$("#plantas_terreo").hide();
				$("#plantas_ap").show();
			}
			
			
			$(".bt_terreo").click(
				function(){
					abre_terreo();
				}
			);
			
			$(".bt_ap").click(
				function(){
					abre_ap();
				}
			);
			
			
			
			
			
			
			
			
			/* INICIO PLANTAS TERREO */
			$("a.grupo1").hover(
				function(){
					$("a.grupo1").css('background-color','#cdeded');
					$(".identico_g1").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo1").css('background-color','');
					$(".identico_g1").css('background-color','');
				}
			);
			
			$("a.grupo2").hover(
				function(){
					$("a.grupo2").css('background-color','#cdeded');
					$(".identico_g2").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo2").css('background-color','');
					$(".identico_g2").css('background-color','');
				}
			);
			
			$("a.grupo3").hover(
				function(){
					$("a.grupo3").css('background-color','#cdeded');
					$(".identico_g3").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo3").css('background-color','');
					$(".identico_g4").css('background-color','');
				}
			);
			
			$("a.grupo4").hover(
				function(){
					$("a.grupo4").css('background-color','#cdeded');
					$(".identico_g4").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo4").css('background-color','');
					$(".identico_g4").css('background-color','');
				}
			);
			
			$("a.grupo5").hover(
				function(){
					$("a.grupo5").css('background-color','#cdeded');
					$(".identico_g5").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo5").css('background-color','');
					$(".identico_g5").css('background-color','');
				}
			);
			
			$("a.grupo6").hover(
				function(){
					$("a.grupo6").css('background-color','#cdeded');
					$(".identico_g6").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo6").css('background-color','');
					$(".identico_g6").css('background-color','');
				}
			);
			/* FIM PLANTAS TERREO */
			
			
			
			
			/* INICIO PLANTAS AP */
			$("a.grupo1_ap").hover(
				function(){
					$("a.grupo1_ap").css('background-color','#cdeded');
					$(".identico_g1").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo1_ap").css('background-color','');
					$(".identico_g1").css('background-color','');
				}
			);
			
			$("a.grupo2_ap").hover(
				function(){
					$("a.grupo2_ap").css('background-color','#cdeded');
					$(".identico_g2").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo2_ap").css('background-color','');
					$(".identico_g2").css('background-color','');
				}
			);
			
			$("a.grupo3_ap").hover(
				function(){
					$("a.grupo3_ap").css('background-color','#cdeded');
					$(".identico_g3").css('background-color','#a1cc3a');
				}
				,
				function(){
					$("a.grupo3_ap").css('background-color','');
					$(".identico_g3").css('background-color','');
				}
			);
			/* INICIO PLANTAS AP */
			
			
			
			
			
	
		
	
			// funcoes thumb lazer
			$(".seta_dir").click(function()
			{
				mouseover=true;
				prox_thumb($(this).parent().parent().find("#mask_foto #thumb_video"));
			});
			$(".seta_esq").click(function()
			{
				mouseover=true;
				ant_thumb($(this).parent().parent().find("#mask_foto #thumb_video"));
			});

			//ativação do prettyphoto
			$("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
			
            $("#container_picasa").pwi({
                username: 'callconstrutora',
				mode: 'album',
				thumbSize: 130,
				album: 'OBRAVALEDASPAINEIRASPARAOSITE',
				showPhotoCaption: true,
				popupExt:  function(photos){
							photos.prettyPhoto({theme:'light_rounded'});
						}
            });
    });
	
}

