// JavaScript Document
$(function()
{
	$('.scroll-pane').jScrollPane({showArrows: true});
	
	//Lightbox for videos
	$("a.video").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;
	});
	
	//Lightbox for pictures
		$("a[rel=pics]").fancybox({
					'transitionIn'		: 'none',
					'transitionOut'		: 'none'
				});

});
