$(document).ready(function(){
  
  // Show bubble
  $(".link-location").mouseover(function() {
    var bubble_top  = parseInt($(this).css('top').substring(0,$(this).css('top').indexOf('px'))) - 58; 
    var bubble_left = parseInt($(this).css('left').substring(0,$(this).css('left').indexOf('px'))) - 13; 
    var bubble_id   = $(this).attr('id')+'-bubble';

    $('#' + bubble_id).css('top',bubble_top + 'px').css('left',bubble_left + 'px').slideDown("fast");

  });
  
  // Hide bubble
  $(".link-location").mouseout(function() {
    var bubble_top  = parseInt($(this).css('top').substring(0,$(this).css('top').indexOf('px'))); 
    var bubble_left = parseInt($(this).css('left').substring(0,$(this).css('left').indexOf('px'))); 
    var bubble_id   = $(this).attr('id')+'-bubble';

    $('#' + bubble_id).slideUp("fast");
  });

  // do nothing when location link clicked
  $(".link-location").click(function() {
    return false;
  });

  // install fancy box on top menu links
	$("a.zoom").fancybox({
    'padding' : 0,
		'overlayOpacity'	:	0.0,
		'zoomSpeedIn'		:	500,
		'zoomSpeedOut'		:	500,
		'frameWidth' : 760,
		'frameHeight' : 430,
		'hideOnOverlayClick' : true,
		'hideOnContentClick' : false
	});

});