jQuery(document).ready(function($){
	var speed = 650;
    $('.big_text').delay(500).animate({opacity:'show'}, speed, function(){
        $('.byline').animate({opacity:'show'}, speed);
    })

	$('.scrollto').click(function(e){
		e.preventDefault();
		$('body').scrollTo($(this).attr('href'), 750);
	})

    $('.project_images').cycle({
        timeout: 0,
        next: '.project_next',
        prev: '.project_prev',
        fx: 'fade',
        speed: 250
    })
    $('.project_titles').cycle({
        timeout: 0,
        fx: 'scrollDown',
        speed: 250
    })
   
    $('.project_next').click(function(){
        $('.project_titles').cycle('next');
    })
                                   
    $('.project_prev').click(function(){
        $('.project_titles').cycle('prev');
    })

})

function email(){
	document.write("<a class=\"link email\" href=\"mail" + "to:" + new Array("jordan","noblegiant.com").join("@") + "\"></" + "a>");
}
