$(document).ready(function(){
	
	// init tooltip
	$("a.tip[title]").tooltip({ 
		tip: '#tooltip', offset: [0, -50], effect: 'slide' 
		    }).dynamic( { 
		        bottom: { direction: 'down', bounce: true } 
    });
	
	// init navSec
	$("#nav-sec").tabs("ul", {
		tabs: 'h2', effect: 'slide', initialIndex: null
	});
	
	// init slideshow
	$("#show-tabs").tabs("#slides > 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#gallery li a").fancybox();
	
});
