﻿J(document).ready(function() { 	
    J("#toolTip").hide();

    J("#footer .onlinep").hover(
		    function() { J("#toolTip").fadeIn("fast"); },
		    function() { J("#toolTip").fadeOut("fast"); }
	    );

    if (J(".imgFancy").length) {
        J(".imgFancy").fancybox({});
    }
    
    J('div#contactable').toggle(function() {
		J('#overlay').css({display: 'block'});
		J(this).animate({"marginRight": "-=5px"}, "fast"); 
		J('#contactForm').animate({"marginRight": "-=0px"}, "fast");
		J(this).animate({"marginRight": "+=387px"}, "slow"); 
		J('#contactForm').animate({"marginRight": "+=390px"}, "slow"); 
	}, 
	function() {
		J('#contactForm').animate({"marginRight": "-=390px"}, "slow");
		J(this).animate({"marginRight": "-=387px"}, "slow").animate({"marginRight": "+=5px"}, "fast"); 
		J('#overlay').css({display: 'none'});
	});
});
function ativaFancy() {
    $(".imgFancy").fancybox({
        'titleShow': false,
        'autoScale': false,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic'
    });
}
