/**
*	@author vaneys@gmail.com (Ivan Maslennikov)
*	@fileoverview 
*/

$(function() {
  
	// home page slideshow start
	$("div#home-slideshow").slideshow();
	
	// watch video link
	$("#watch-video").fancybox({
			padding		: 0,
			autoScale		: false,
			transitionIn	: 'elastic',
			transitionOut	: 'elastic',
			speedIn			: 400,
			speedOut		: 200,
			overlayShow		: true,
			overlayColor	: '#fff',
			width			: 640,
			height			: 385,
			href			: $("#watch-video").attr('href').replace(new RegExp("watch\\?v=", "i"), 'v/'),
			type			: 'swf',
			swf				: { wmode : 'transparent',allowfullscreen : 'true' }
	});
});
