$(document).ready(function() {  
	$('#tooltip').hide();
	$('#socialClickable').bind("click", showTooltip);
	
	visibility = 0;
});

function showTooltip(event) {
	if (visibility == 0) {
		var x = event.pageX - $('#social').offset().left;
	
		var tip;
	
		if (x > 17 && x < 49) {
			tip = "<strong style='font-size: 11px'>MSN</strong><br/><br/>feiradeformandosbahia@hotmail.com";
		} else if (x > 58 && x < 89) {
			tip = "<strong style='font-size: 11px'>Skype</strong><br/><br/>feira.de.formandos";				
		} else if (x > 97 && x < 129) {
			tip = "<strong style='font-size: 11px'>Twitter</strong><br/><br/>http://twitter.com/FormandosFeira";
		} else if (x > 139 && x < 168) {
			tip = "<strong style='font-size: 11px'>Youtube</strong><br/><br/>feira.de.formandos";		
		}                      
		if (tip) {
			$("#tip").append(tip);		
			$('#tooltip').show(); 
			
			visibility = 1;
		}
	}
}

function hideTooltip() {
	$('#tooltip').hide();
	$("#tip").empty();
	
	visibility = 0;
}