$(document).ready(function(){
	$file = document.location.href;
	$url = 'http://www.pjvarquitetura.com.br/';
	if($file == $url){
	$img = $('#home-image').find('img:last-child');
	$('#menu').css({display: 'none'});
	$('#main').css({height:'0px', display:'none'});
	$('.red-bar').css({width:'0px'});
	
	$img.load(function(){
	$('.red-bar').animate({width:'100%'},2000, function(){$('#main').animate({height:'400px'},500); $('#menu').fadeIn();});})
	}});

