// JavaScript Document
$(document).ready(function(){
	/* TOOLTIPS */
	$(".tooltip a").hover(
			function() {
				$(this).next("p").stop(true, true).animate({opacity: "show", top: "-40"}, "slow");
			}
		,
			function() {
			$(this).next("p").animate({opacity: "hide", top: "-30"}, "fast");
			}
	);
});
