$(document).ready(function() {
	
	$('.hero li').mouseenter(function(){
		$(this).find('.callout').animate({
            height: '130px'
        }, 300, function() {
            // Animation complete.
        });
    }).mouseleave(function(){
		$(this).find('.callout').animate({
            height: '26px'
        }, 300, function() {
            // Animation complete.
        });
    });

$(".video-launch").click(function() {
	$.fancybox({
			'padding'		: 0,
			'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;
});

});