$(document).ready(function(){
						   
	// init tooltip
	$("a.tip[title]").tooltip({ 
		tip: '#tooltip', 
		offset: [-30, -50], 
		effect: 'slide' 
		    }).dynamic({ 
		        bottom: { direction: 'down', bounce: true } 
    });
	
	// init slideshow
	$("#show-tabs").tabs("#slider > img", { 
        effect: 'fade', fadeOutSpeed: "slow", autoplay: true, interval: 5000, rotate: true 
    }).slideshow();
	
	// scroll to top
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	
	// init Fancybox
	$("ul.fancy li a, div.fancy a").fancybox();
	
});
