﻿$(document).ready(function () {

	/*
	$('.switch').toggle(
	function () {
	$('#strip').animate({ height: '600px' }, 700, function () {
	$('#switch1').removeClass('more1').addClass('less1');
	$('#switch2').removeClass('more2').addClass('less2');
	$('#switch3').removeClass('more3').addClass('less3');
	});
	},
	function () {
	$('#strip').animate({ height: '115px' }, 700, function () {
	$('#switch1').removeClass('less1').addClass('more1');
	$('#switch2').removeClass('less2').addClass('more2');
	$('#switch3').removeClass('less3').addClass('more3');
	});
	});
	*/

	//$("#nav li").hoverIntent({ over: showMenu, timeout: 350, out: hideMenu });

	/*
	$('.scroll-pane').jScrollPane(
	{
	showArrows: false,
	verticalGutter: 10,
	verticalDragMaxHeight: 7,
	verticalDragMinHeight: 7
	}
	);
	*/
	$(".videobox").click(function () {
		showPlayer();
	});

	$("#overlay").click(function () {
		hidePlayer();
	});

	$("#sideshowreel").fancybox({
		'autoScale': 'false',
		'width': 915,
		'height': 524,
		'type': 'iframe'
	});

	$("#social").click(function () {
		$("#socialicons").fadeToggle("normal", "linear");
	});

});


function showPlayer() {
	$("#overlay").css({ 'display': 'block' });
	$("#homevideo").css({ 'opacity': '0' });
	$("#homevideo").css({ 'background-color': '#000000' });
	$('#homevideo').animate({ opacity: 0.2 }, 400, function () {
		$("#player").css({ 'display': 'block' });
	});
};

function hidePlayer() {
	$("#overlay").css({ 'display': 'none' });
	$("#player").css({ 'display': 'none' })
	$('#homevideo').animate({ opacity: 1 }, 0);
	$("#homevideo").css({ 'background-color': 'transparent' });
};

