$(document).ready(function() {
	$('a.tooltip-trigger-left').hover(function()
	{
			$(".pop-up#next").fadeIn();
			var offset = $(this).offset();
			$(".pop-up#next").css( {"left" : offset.left - (375/2) + 10 , "top" : (offset.top - $(".pop-up#next").height() - 25)} );
		}, 
		function(){
			$(".pop-up#next").fadeOut();}
	);
	
	$('a.tooltip-trigger-right').hover(function()
	{
			$(".pop-up#prev").fadeIn();
			var offset = $(this).offset();
			$(".pop-up#prev").css( {"right" : offset.left - (1458/2) + 10 , "top" : (offset.top - $(".pop-up#prev").height() - 25)} );
		}, 
		function(){
			$(".pop-up#prev").fadeOut();}
	);
	
	$('a.tooltip-trigger-left1').hover(function()
	{
			$($(this).attr('href')).fadeIn();
			var offset = $(this).offset();
			$($(this).attr('href')).css( {"left" : offset.left - (375/12) + 10 , "top" : (offset.top - $($(this).attr('href')).height() - 15)} );
		}, 
		function(){
			$($(this).attr('href')).fadeOut();}
	);
	
	$('a.tooltip-trigger-right1').hover(function()
	{
			$($(this).attr('href')).fadeIn();
			var offset = $(this).offset();
			$($(this).attr('href')).css( {"right" : offset.left - (1220/2) + 10 , "top" : (offset.top - $($(this).attr('href')).height() - 15)} );
		}, 
		function(){
			$($(this).attr('href')).fadeOut();}
	);
	
		
});
