$(document).bind('ready', function() {
	// Add nav accent images
	$('#nav')
		.prepend('')
		.prepend('');
	
	// Setup slideshow
	$('.slideshow')
		.cycle({
			timeout: 5000,
			speed: 1500
		});
	
	// Setup builder link to open in new window
	$('a.builder')
		.attr('target', '_blank');
});