$(document).ready(function(){
	$('#logo a').hover(function () {
		$(this).stop().animate({
			opacity: 0.7
		}, 200);
	}, function () {
		$(this).stop().animate({
			opacity: 1
		}, 200);
	});

	$("#scroller").simplyScroll({
		frameRate : 200
	});

	$('#slider-cont').slides({
		preload: true,
		play: 4000,
		pause: 2500,
		hoverPause: true
	});
	
	$(".gallery a").fancybox();

	$('.fancybox_video').click(function() {
		$.fancybox({
			'padding' : 0,
			'autoScale' : false,
			'transitionIn' : 'elastic',
			'speedIn': 300,
			'transitionOut' : 'elastic',
			'speedOut': 200,
			'title' : this.title,
			'width' : 640,
			'height' : 385,
			'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type' : 'swf',
			'swf' : {
				'wmode' : 'transparent',
				'allowfullscreen' : 'true'
			}
		});
		return false;
	});
});
