// JavaScript Document
jQuery(function() {
	jQuery('.backtotop').click(function(){
		jQuery('html, body').animate({scrollTop:0}, 'slow');
	});
	jQuery('.tips').tipsy({gravity: 's', fade: true, title: 'alt'});
	jQuery('.tips-bottom').tipsy({gravity: 'n', fade: true, title: 'alt'});
});


