$(document).ready(function() {
	//Accordion
	$('#content-wrapper')
	.hide()
	.slideDown(1000);
	$('a:not(.not-accordion-link, .thumb)').click(function(event) {
		event.preventDefault();
		url = $(this).attr("href");
		$('#content-wrapper').animate({opacity: 0}, 300, function () {
			$('#content-wrapper').slideUp(700);
			window.setTimeout(function(){document.location.href=url;}, 1000);
			return -1;
		});	
	});
	//Accordion End

	//JScrollPane
	$('.scrollable-content').jScrollPane({
		verticalDragMinHeight: 20,
		verticalDragMaxHeight: 20,
		horizontalDragMinWidth: 20,
		horizontalDragMaxWidth: 20
	});

	$('.scrollable-content img').load(function () {
			$('.scrollable-content').jScrollPane({
				verticalDragMinHeight: 20,
				verticalDragMaxHeight: 20,
				horizontalDragMinWidth: 20,
				horizontalDragMaxWidth: 20
			});
		});
	
	/*
	$('.scrollable-content tr').load(function () {
			$('.scrollable-content').jScrollPane({
				verticalDragMinHeight: 20,
				verticalDragMaxHeight: 20,
				horizontalDragMinWidth: 20,
				horizontalDragMaxWidth: 20
			});
		});*/
	
	//JScrollPane End

	//VideoJS
	VideoJS.setupAllWhenReady({
		controlsBelow: true, // Display control bar below video instead of in front of
		controlsHiding: false, // Hide controls when mouse is not over the video
		defaultVolume: 0.85, // Will be overridden by user's last volume if available
		flashPlayerVersion: 9, // Required flash version for fallback
	});
	$('.homepage_content video').bind('ended', function() {
		content_wrapper = $('#content-wrapper');
		content_wrapper.animate({opacity: 0}, 500, function() {
			content_wrapper.delay(300).slideUp(700, function () {
				window.document.location.href = "http://www.sofilm.net/index.php?id=2";
			});
		});
	});
	//VideoJS End
});

