$(document).ready( function () {
	$("div.scrollable").scrollable({ 
		size: 4, 
		items: '.thumbs',   
		hoverClass: 'hover' 
	});
	$("div.scrollableVideos").scrollable({
		size: 2,
		items: '.videos',
		prevPage: '.prevVideo',
		nextPage: '.nextVideo'
	});

	$("a.iframe").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});

    $("a.lightbox").slimbox({/* Put custom options here */}, null, function(el) {
	return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
    });
});

