$(document).ready(function(){
	
	//social services tooltip
	$(".owl a").toggle(function(){
		$(this).next("div").stop(true, true).animate({opacity:"show", top:"5"}, "fast");
	}, function(){
		$(this).next("div").stop(true, true).animate({opacity:"hide", top:"0"}, "fast");
	});
});