
// tooltip


// this is the original script

/*$(document).ready(function(){
 
	$(".tooltip a").hover(function() {
	$(this).next("div").stop(true, true).animate({opacity: "show", top: "-360"}, "slow");
	}, function() {
	$(this).next("div").animate({opacity: "hide", top: "-350"}, "fast");
	});
	
	 
});*/



//modified to assign different mouse over effects

$(document).ready(function(){
 
	$(".tooltip a").hover(function() {
	$(this).next("div").stop(true, true).animate({opacity: "show", top: "-410"}, "slow");
	});
	
	
	$(".btnclose a").click(function() {
	$(".tooltip a").next("div").animate({opacity: "hide", top: "-400"}, "fast");
	
	return( false );
	});
	
	
 
});

