$(document).ready(function(){
	$("#elements").hide();
	$("#logo").hide();
	$("#background").hide();
	$("#background").fadeIn(800, function(){
		$("#logo").fadeIn(800, function(){
			$("#elements").fadeIn(1200);
		});
	});
});


$(function() {
    
	
	$('.cycle-gallery').cycle({
    speed:  800,
    timeout: 5000,
    next:   '.next', 
    prev:   '.prev',
	});
	
	$(".gallery-item").click(
    function(){ 
    $(".cycle-gallery").cycle('next');
    return false;
    }
    );
	
	$('#hp-carousel').cycle({
    speed:  700,
    timeout: 5500
	});
	
	$(".nextimg").click(
    function(){ 
    $("#carousel").cycle('next');}
    );
	
});

