$(document).ready(function(){

	$('.projects_list li:nth-child(4n+1)').css("margin-left", "0px");

	$('.projects_list li a').colorbox({
		onComplete:function(){ $('.project_big .cycle').cycle(); }
	})

	$('.testimonials').cycle({ 
    speed:    500, 
    timeout:  500,
    fx: 'none',
    next: '.nextTestimonial' 
	});

	$('.testimonials').cycle('pause');	

	var length = $(".headline h2").length;
	var ran = Math.floor(Math.random()*length) + 1;
	$(".headline h2:nth-child(" + ran + ")").show();

	function doCycle() {
		$('.project_big .cycle img').cycle();
		$('.project_big').css('height','400px');

	}

});

