$(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();
	$(".vf-button").click(function() {
		$.fancybox({
				'padding'		: 10,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					 'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	
});
