// JavaScript Document

$(document).ready(function() {
	
	if ($.browser.msie && $.browser.version.substr(0,1)<8) {
		alert('Este site utiliza tecnologia incompatível com o Internet Explorer 7 ou inferior. Por favor, atualize seu navegador ou utilize navegadores mais modernos, como o Google Chrome ou Firefox');
	}
	
	if(conteudo == "balcoes"){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '661px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$.get('php/balcoesload.php', function(retorno){
				$('#main').html(retorno);
			});
		})
	} else if(conteudo == "gondolas"){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '661px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$.get('php/gondolasload.php', function(retorno){
				$('#main').html(retorno);
			});
		})
	} else if(conteudo == "checkout"){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '661px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$.get('php/checkoutload.php', function(retorno){
				$('#main').html(retorno);
			});
		})
	} else if(conteudo == "expositores"){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '661px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$.get('php/expositoresload.php', function(retorno){
				$('#main').html(retorno);
			});
		})
	} else {
	
	$('#main').animate({opacity: 0}, 500, function(){
			$('#loading').fadeIn("slow");
			$.get("php/home.php", function(retorno){
				news_load = retorno;
				home();
			})
		})
	}
	
	 $('<img>').pShadow();
	 
	 $.getJSON("php/banner.php", function(retorno){
		  bbanner = retorno.banner;
		  btitulo = retorno.titulo;
		  btexto = retorno.texto;
		  banner();
	  })
	  
	  $.getJSON("php/bottomimg.php", function(retorno){
		  bannera = retorno.banner1;
		  bannerb = retorno.banner2;
		  btbanner();
	  })
	  
	  $('#forca').animate({opacity: 0}, 0);
	  $('#design').animate({opacity: 0}, 0);
	  $('#confianca').animate({opacity: 0}, 0);
	  banneranimatexto();
	  
	  
	  $('#simulador').mouseover( function (){
		  $('#simulador-tip').fadeIn("fast");
	  })
	  $('#simulador').mouseout( function (){
		  $('#simulador-tip').fadeOut("fast");
	  })
	  $('#simulador').click( function (){
		  $('#loading').fadeIn("slow");
		  $('#main').animate({opacity: 0}, 500, function(){
			  $('#msg').fadeOut("slow");
			  $.get("php/simulador.php", function(retorno){
				  $('#main').html(retorno);
				  $('#main').animate({opacity: 1}, 500, function(){});
			  })
		  })
	  })

	
	//MENU
	
	$('.home').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '575px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$('#msg').fadeOut("slow");
			$.get("php/home.php", function(retorno){
				news_load = retorno;
				home();
			})
		})
	})
	$('.empresa').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '618px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$('#msg').fadeOut("slow");
			$.get("php/empresa.php", function(retorno){
				$('#main').html(retorno);
			})
		})
	})
	$('.produtos').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '661px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$.get('php/produtosload.php', function(retorno){
				$('#main').html(retorno);
			});
		})
	})
	$('.financiamento').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '704px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$('#msg').fadeOut("slow");
			$.get("php/financiamento.php", function(retorno){
				$('#main').html(retorno);
			})
			//financiamento();
		})
	})
	$('.juntese').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '747px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$('#msg').fadeOut("slow");
			$.get("php/juntese.php", function(retorno){
				$('#main').html(retorno);
			})
		})
	})
	$('.contato').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '790px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$('#msg').fadeOut("slow");
			$.get("php/contato.php", function(retorno){
				$('#main').html(retorno);
			})
		})
	})
	$('.representantes').click( function(){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '833px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$('#msg').fadeOut("slow");
			$.get("php/loginform.php", function(retorno){
				$('#main').html(retorno);
			})
		})
	})
	$('#banner3').click( function (){
		$('#loading').fadeIn("slow");
		$('#menucursor').animate({top: '661px'}, 500, function(){});
		$('#main').animate({opacity: 0}, 500, function(){
			$.get('php/checkoutload.php', function(retorno){
				$('#main').html(retorno);
			});
		})
	})
	
	// PRODUTOS
	
	//$('#prod_up').click( function(){
//		alert('teste');
//		$('#prod_wrap').({ marginTop: "-65px" }, "slow", function () {})
//	})


});
