// JavaScript Document
$(function(){
	$("#menu > ul > li > a").mouseover(function(){
		$("#menu ul li ul").hide();
		$("#menu ul li a").removeAttr("class");
		$("body").removeAttr("class");
		$(this).attr("class","hover");
		$(this).parent().find("ul").show();
	});
	
	$("#menu > ul > li.venda > a").mouseover(function(){
		$("body").attr("class","current-body");
	});
	
	$("#menu > ul > li.locacao > a").mouseover(function(){
		$("body").attr("class","current-body");
	});	
	
	$("#menu > ul > li.condominio > a").mouseover(function(){
		$("body").attr("class","current-body");
	});		

    $(".outras-vantagens").click(function () { 
		$("#mais-info").slideDown();
		$(this).hide();
		$(".outras-vantagens2").show();
    });
	
    $(".outras-vantagens2").click(function () { 
		$("#mais-info").slideUp();
		$(this).hide();
		$(".outras-vantagens").show();
    });	
	
    $(".departamentos > li > a").click(function () { 
		if($(this).attr("class") == "on")
			$(this).parent().find("p").slideUp(); 
		else
			$(this).parent().find("p").slideDown(); 
	  $(this).toggleClass("on")
    });	



});


function mudaVideo(url,tipo,urlDetalhe){
	if (tipo=='youtube'){
	
	jQuery('.video_home').html('<img src="/img/loading.gif">');
		var videoNovo='<object width="500" height="300"><param name="movie" value="'+url+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+url+'&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object>';
	jQuery('.video_home').html(videoNovo);
	
	}
	(urlDetalhe);
	$("a.urlDetalhe").attr("href","detalhes.aspx?" + urlDetalhe);
};