jQuery(document).ready(function(){
	hoverFade();
	
	jQuery('a[rel="tracker"]').click(function() {
		tracker('/ilhabela_v4/trip/para_o_twitter/download/' + jQuery(this).attr('title'));
	});
});

/* HOVER FADE */
function hoverFade() {
	jQuery('.fadeThis').each(function () {
	  var $span = jQuery('> span.hover', this).css('opacity', 0);
	  jQuery(this).hover(function () {
		$span.stop().fadeTo(175, 1);
	  }, function () {
		$span.stop().fadeTo(175, 0);
	  });
	});
}

/*
TAMANHOS(LARGURA X ALTURA) MINIMOS DO FLASH PARA IE6 EM SITES FLASH 100% X 100%
if($.browser.msie && $.browser.version <= 6.0) {
	$(document).ready(minMsieProperties);
	$(window).resize(minMsieProperties);
}

function minMsieProperties() {
	if(jQuery(window).width() <= 1024) { //COLOCAR LARGURA MÍNIMA DO FLASH PARA IE6
		jQuery('html, body, #wrapper').css("width","1024px");
	}
	else {
		jQuery('html, body, #wrapper').css("width","100%");
	}
	if(jQuery(window).height() <= 830) { // COLOCAR ALTURA MÍNIMA DO FLASH PARA IE6
		jQuery('html, body, #wrapper').css("height","830px");
	}
	else {
		jQuery('html, body, #wrapper').css("height","100%");
	}
}
*/


function closeLayer() {
	jQuery('#overlay').hide();
}
