$(document).ready(function(){
	$(function(){
	  //SyntaxHighlighter.all();
	});
	$(window).load(function(){
	  $('.flexslider').flexslider({
		animation: "fade",
		start: function(slider){
			$('body').removeClass('loading');
		}
	  });
	});

	$('.zagl-f').click(function(){
		$(this).parent().children('.hide-mobile').toggle('normal');
		return false;
	});
	
	
	$('.playLeft').click(function() {
		$('.videoLeft').fadeIn();
		return false;
		consoleLog('jbj');
	})
	
	$('.closeLeft').click(function() {
		$('.videoLeft').fadeOut();
		return false;
	})
	
	$('.playRight').click(function() {
		$('.videoRight').fadeIn();
		return false;
	})
	
	$('.closeRight').click(function() {
		$('.videoRight').fadeOut();
		return false;
	})

	$('.playRightBottom').click(function() {
		$('.videoRightBottom').fadeIn();
		return false;
	})
		
	$('.closeRightBottom').click(function() {
		$('.videoRightBottom').fadeOut();
		return false;
	})
});