$(function()
{
	// gallery image changer
	$('.gallery .thumb img').click(function () {
		newsource = $(this).attr('src');
		oldsource = $('.gallery .img1 img').attr('src');
		$(this).attr('src', oldsource).fadeIn('fast');
		$('.gallery .img1 img').fadeOut('fast').attr('src', newsource).fadeIn('fast');
	});
	
	// fallback if js is disabled
	$('#main #content .coda-slider-wrapper').css('overflow', 'visible');
	
	// init coda-slider
	$('#slider').codaSlider({
		dynamicArrows: true,
		dynamicTabs: false,
		autoSlide: true,
		firstPanelToLoad: 1,
	});
	
	$('.homeboxes .homebox:first-child .imagewrapper .overlay').addClass('first');
	$('.homeboxes .homebox:last-child .imagewrapper .overlay').addClass('last');
});
