$(document).ready(function() {
	$('#panoramic').cycle({
		fx: 'fade',
		speed: 1000, 
		timeout: 4500
	});
	
	$('.ngg-gallery-thumbnail a').click(function(){
		var source = $(this).attr('href');
		
		if($('#large').attr("src") != $(this).attr('href')){
			$('#large').fadeOut(function(){
				$('#large').attr("src",source);
				
			});
			$('#large').fadeIn();
			
		}
		return false;
	});
	
	$("a[rel*='external']").each(function() { 
		this.target = '_blank';
	});
});

