$(document).ready(function(){
	
	$('#info a').hover(function() {
	
		var rel = $(this).attr("href");
		var pos = $(this).position();
		var wid = $(this).width();
		
		$(rel).show().css({ 'left': pos.left - 167 / 2 + wid / 2 })
	
	}, function() {
	
		var rel = $(this).attr("href")
		$(rel).hide()
	
	})
	
});
