$(document).ready(function() {
	
	// GOOGLE ANALYTICS EXTERNAL LINK TRACKING
	$('a.external').click(function(){
		_gaq.push(['_trackEvent', 'External Links', 'Click', $(this).attr('href')]);
	});
	
	// GOOGLE ANALYTICS PDF DOWNLOAD TRACKING
	$('a[href$=".pdf"]').click(function(){
        var url = $(this).attr('href');
        _gaq.push(['_trackEvent', 'Downloads', 'click', url]);
    });
	
	// TransparentSea Overlay
	var overlayHeight = $('.overlay').height();
	var xPosition = overlayHeight + 20;
	$('#transparentsea').hover(
		function() {
			$('.overlay').stop().animate({'top':'0px'});
		},
		function() {
			$('.overlay').stop().animate({'top':xPosition + 'px' });
		}
	);
	
});
