//
//Phoenix Orthopedic Consultants
//Golfer Tooltip
//
//Author: Erik Teichmann
//www.erikteichmann.com
//Copyright 2011 Netwirks LLC
//www.netwirks.com
//

$(function() {
	$(".poc-tip-popup").css("display", "none");
	$(".poc-tip").hover(function() {
        $(this).children(".poc-tip-popup").stop(true, true).animate({ opacity : 'toggle' }, 300);
	});
  });
