$(document).ready(function(){
						   
	// init tooltip
	$("a.tip[title]").tooltip({ 
		tip: '#tooltip', 
		offset: [-30, -50], 
		effect: 'slide' 
		    }).dynamic({ 
		        bottom: { direction: 'down', bounce: true } 
    });
	
	// scroll to top
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	
	// init Fancybox
	$("dl.gallery-item dt a").fancybox();
	
});


