$(document).ready(function(){ 

	/* Open rel="external" links in new window */
	$('a[rel="external"]').click( function() { window.open( $(this).attr('href') ); return false; });

	$('.slideshow').each(function(){
		var $this = $(this);
		$this.cycle({
			fx: 'fade',
			speed: 300,
			next: $this.next('.info').find('.next'),
			prev: $this.next('.info').find('.prev'),
			pager: $this.next('.info').find('.pager'),
			timeout: 0
		});
	
	});


	$.localScroll();
			
	$('nav').find('a').click(function() { $('.active').removeClass('active'); });
	$('#worknav').find('a').click(function() {
		$('#contact').fadeOut('fast');
		$('#about').fadeOut('fast');
		$('#worknav').find('a').removeClass('active');
		$(this).addClass('active');
	});

	$('.about-link').click(function() {
		 	$('#contact').fadeOut('fast');
			$('#about').fadeIn('fast');
	});
	$('#about .close').click(function() { $('#about').fadeOut('fast'); });
	
	$('.contact-link').click(function() { 
		$(this).addClass('active');
		$('#about').fadeOut('fast');
		$('#contact').fadeIn('fast');	
	});
	$('#contact .close').click(function() { $('#contact').fadeOut('fast'); });
	
});
