///////////////// 

///////////////// REDIMENSIONAR O BACKGROUND DO SITE

/////////////////

$(document).ready(function() {

	$("body, #map_content").ezBgResize({

		img     : "lib/img/bg/bg.jpg", // Relative path example.  You could also use an absolute url (http://...).

		opacity : 1, // Opacity. 1 = 100%.  This is optional.

		center  : true // Boolean (true or false). This is optional. Default is true.

	});

});

///////////////// 

///////////////// REDIMENSIONAR O BACKGROUND DO SITE

/////////////////





/////////////////

///////////////// SLIDER

/////////////////

$(document).ready(function(){	

			$("#slider3").easySlider({

				auto: false, 

				continuous: false

			});

		});	

/////////////////

///////////////// SLIDER

/////////////////





/////////////////

///////////////// MENU

/////////////////

$(document).ready(function() {

    $(".topMenuAction").click( function() {

        if ($("#openCloseIdentifier").is(":hidden")) {

            $("#slider2").animate({ 

                marginTop: "-159px"

                }, 500 );

            $("#topMenuImage").html('<img src="lib/img/menu/open.png"/>');

            $("#openCloseIdentifier").show();

        } else {

            $("#slider2").animate({ 

                marginTop: "0px"

                }, 500 );

            $("#topMenuImage").html('<img src="lib/img/menu/open.png"/>');

            $("#openCloseIdentifier").hide();

        }

    }); 

});

/////////////////

///////////////// MENU

/////////////////





/////////////////

///////////////// PUBLICIDADE LADO DIREITO

/////////////////

$(document).ready(function() {

	 setTimeout(function(){

		$('.alinhar').animate({ 

                marginRight: "-370px"

                }, 500 );

		},2000);					   

    $("#abrir-box").click( function() {

        if ($("#abreFecha").is(":hidden")) {

            $(".alinhar").animate({ 

                marginRight: "-370px"

                }, 500 );

            $("#abrir-box").html('<img src="lib/img/adv/abrir.png"/>');

            $("#abreFecha").show();

        } else {

            $(".alinhar").animate({ 

                marginRight: "0px"

                }, 500 );

            $("#abrir-box").html('<img src="lib/img/adv/fechar.png"/>');

            $("#abreFecha").hide();

        }

    });



});

/////////////////

///////////////// PUBLICIDADE LADO DIREITO

/////////////////





///////////////// 

///////////////// MODAL

/////////////////

$(function() {

  $('.nyroModal').nyroModal()

});

///////////////// 

///////////////// MODAL

/////////////////
