$(document).ready(function(){

$("div.mylink[title]").tooltip({
		effect: 'fade',
		fadeInSpeed: 200
	});

	$("a#top").click(function(){
		if(navigator.userAgent.indexOf("Opera")>-1) return true;
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});

});


