/* EFEITO DAS FOTOS DA HOME DAS CASAS */
$(document).ready(function() {	
	$(".fotos_home a.ft").mouseover(function(){	
     	if (this.id == "ft_1" || this.id == "ft_4") {			
			$(this).attr("class","ft_hover");
			$(this).css("z-index","2");
		} else {			
			$(this).attr("class","ft_hover");
			$(this).css("z-index","2");
			var src = $(".ft_hover > img").attr("src");
			var newsrc = src.replace(/\/_s/, "/_m");
			$(".ft_hover > img").attr("src",newsrc);
		}		
    }).mouseout(function(){
    	if (this.id == "ft_1" || this.id == "ft_4") {
    		//
    	} else {
			var src = $(".ft_hover > img").attr("src");
			var newsrc = src.replace(/\/_m/, "/_s");
    	}
		$(".ft_hover > img").attr("src",newsrc);
		$(this).attr("class","ft"); 
		$(this).css("z-index","1");
    });	
	
});
/* FIM EFEITO FOTOS */

$(document).ready(function() {	
	$(".album_fotos a").mouseover(function(){			
		var src = $("img:first",this).attr("src");
		var newsrc = src.replace(/\/_s/, "/_m");		
		$(".imgmedia > img",this).attr("src",newsrc);
		$(".imgmedia",this).css("display","block");
    }).mouseout(function(){
		$(".imgmedia",this).css("display","none");
	});		
});