function deployFunctions() {


	/* MENU */
	$('.menu').css('top', ($(window).height() - $('.menu').height()) / 2);
	
	
	/* SLIDER */
	$(".sliderMask, .jScrollPaneContainer").height($(window).height());
	$('.sliderMask').jScrollPane();
	
}

$(document).ready(function() {
	deployFunctions();
	
	
	/* MENU */
	$('.menu ul.list li a').hover(function() {
	$(this).animate({paddingLeft: '20px'}, {queue:false, duration: 100});
	},
	function(){
	$(this).animate({paddingLeft: '10px'}, {queue:false, duration: 100});
	});
	
	
	/* PLAYER */
	$('.popup-player').hover(function(){
	$(this).animate({left: '0px'}, {queue:false, duration: 100});
	},
	function(){
	$(this).animate({left: '-150px'}, {queue:false, duration: 100});
	});
	
	
	/* SLIDER */
	$('.sliderMask .sliderContent img').load(function() {
	$(".sliderMask, .jScrollPaneContainer").height($(window).height());
	$('.sliderMask').jScrollPane();
	});

});
