$(document).ready(function() {
	var paginaBreedte = document.documentElement.clientWidth; 
	var marginLinks = (paginaBreedte / 2) - 475;
	
	$("#container").css("margin-left", marginLinks);
	$("#content_right").css("margin-left", marginLinks + 830);
	$("#content_right").css("margin-top", 150); 
	
	$("#banner").click(function(){
		if($("#content_left").height() >= 500){
			$("#content_left").animate({ height : 0}, {duration:600, easing: 'easeOutQuad'});
			$("#content2").animate({ height : 560}, {duration:600, easing: 'easeOutQuad'});	
		}else{
			$("#content_left").animate({ height : 700}, {duration:600, easing: 'easeOutQuad'});
			$("#content2").animate({ height : 0}, {duration:600, easing: 'easeOutQuad'});		
		}
		
	});
	
	$("#btn_more").click(function(){
		if($("#content_left").height() >= 500){
			$("#content_left").animate({ height : 0}, {duration:600, easing: 'easeOutQuad'});
			$("#content2").animate({ height : 560}, {duration:600, easing: 'easeOutQuad'});	
		}else{
			$("#content_left").animate({ height : 700}, {duration:600, easing: 'easeOutQuad'});
			$("#content2").animate({ height : 0}, {duration:600, easing: 'easeOutQuad'});		
		}

	});
	
	$("#btn_terug").click(function(){
		if($("#content_left").height() >= 500){
			$("#content_left").animate({ height : 0}, {duration:600, easing: 'easeOutQuad'});
			$("#content2").animate({ height : 560}, {duration:600, easing: 'easeOutQuad'});	
		}else{
			$("#content_left").animate({ height : 700}, {duration:600, easing: 'easeOutQuad'});
			$("#content2").animate({ height : 0}, {duration:600, easing: 'easeOutQuad'});		
		}

			
		
		
	});
	
	$("a[rel=lightbox]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'outside',
				'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
				    return '<span id="fancybox-title-over">' +  title + '</span>';
				}
			});

	
});
