$(document).ready(function() {
	$("#contentLay").fadeTo(200, 0.8);
	$("#rightArea").fadeIn(2000);
	
	$('#gallery').cycle({ 
    fx:     'fade', 
    speed:   2000, 
    timeout: 4000, 
    next:   '#gallery', 
    pause:   0 
	});
	
	$('#quotes').cycle({ 
    fx:     'fade', 
    speed:   4000, 
    timeout: 3000, 
    next:   '#gallery', 
    pause:   0 
	});
	
	
});
	
$(window).bind('load', function() {
	
	$("#contentLay").animate({width: '300'}, 1300);
	$("#contentArea").fadeIn(500);
	
	$("#toggler").toggle(function(){
		$("#contentArea").fadeOut(300);
		$("#contentLay").animate({width: '18'}, 800);
		$("#toggler").addClass("active")
	}, function(){
		$("#contentLay").animate({width: '300'}, 1300);
		$("#contentArea").fadeIn(2500);
		$("#toggler").removeClass("active")
	});
	
});
