$(document).ready(function() {
	$('ul#nav li a').each(function() {
		var hash = $(this).attr('href').split('/');
		$(this).attr('href', '').attr('href', '#' + hash[1]);
	});
	$('#smallnav a').each(function(n) {
		var hash = $(this).attr('href').split('/');
		$(this).attr('href', '').attr('href', '#' + hash[1]);
	});

	var data = {
		imgs: ['sky', 'riverisland', 'teachers', 'daysoutguide', 'gos', 'ii', 'gt', 'mbu', 'sirenic'],
		urls: ['/portfolio/sky', 
		       '/portfolio/riverisland', 
		       '/portfolio/teachers-tv', 
		       '/portfolio/daysoutguide',
		       '/portfolio/graph-of-shame', 
		       '/portfolio/investit', 
		       '/portfolio/garden-trellis', 
		       '/portfolio/moodboard-unlimited', 
		       '/portfolio/sirenic-silver'
		]
	};
	$.fader.init(data);

	$('#coda-slider-1').codaSlider({
		firstPanelToLoad: firstPanel
	});

	$("form#contactform").submit(function(evt) {
		$.contact.handleContactForm(evt);
	});

	$('#project-menu ul li a').bind('click', function(evt) {
		if (evt && evt.preventDefault) {
			evt.preventDefault();
		}
		$.post($(this).attr('href'), {'js_on' : 1}, function(data) {
			$('#projectholder').html(data);
			setupZoom();
		});
	});
});
