$(function(){

	$('ol#navigation li a').click(function(){
		id = $(this).attr('href');
		$('html, body').animate({scrollTop: $(id).offset().top}, {duration: 1000, easing: 'swing'});
		return false;
	});

	$('a.contact_go').click(function(){
		$('html, body').animate({scrollTop: $('#contact').offset().top}, {duration: 1000, easing: 'swing'});
		return false;
	});
	
	$('#send_contact').click(function(){
		$('form.contact').hide();
		$('div#sending').show();
		$.post(
			$('form.contact').attr('action'),
			{
				token: $('input[name="token"]').val(),
				message: $('textarea[name="message"]').val()
			},
			function(){
				$('div#sending').hide();
				$('h2#thanks').fadeIn('slow');
		});
		return false;
	});

	$('ul#work_bouncers').cycle({ 
    	fx: 'scrollDown',
		timeout: 0,
		easing: 'easeOutBounce',
	    next: 'ul#work_bouncers li a.next_work'
	});

});