$(document).ready(function()
{
	//protect email
	$('.protect').each(function(){
		email = this.href;
		e = email.split('/');
		e.reverse();
		this.href = 'mailto:'+e[2]+'@'+e[1]+'.'+e[0];
	});
	
	//toggle logo
	$(document).mousemove(function(e)
	{
		offset = $('#hotspot').offset();
		
		if(e.pageY < offset.top + 125){
			if($('#logo').is(':visible'))
				$('#logo').hide();
		}
		if(e.pageY > offset.top + 125){
			$('#logo').show();
		}		
	});
	
});
