// scroll images
$('#image-nav a').click(function(){
	var url = $(this).attr('href');
	var pieces = url.split('#',2);
	var to_id = pieces[1];
	var offset = $('#' + pieces[1]).offset();
	$('html, body').animate({
		scrollTop: offset.top
	}, 3000);
	return false;
});

// hide/show text
var has_img = $('.article-images img').length;
if (has_img) {
	var hide = '<span id="hide">Hide</span>';
	var show = '<span id="show" style="display: none">Show</span>';
	$('#text').append(hide);
	$('header').append(show);
	// hide
	$('#hide').click(function() {
		$('#text').animate({'top': '-=145px'}, 'slow').slideUp('slow');
		$('#show').show();
	});
	// show
	$('#show').click(function() {
		$('#text').slideDown('slow').animate({'top': '+=145px'}, 'slow');
		$(this).hide();
	});
}

// loader
$(window).load(function() {
	$('#loader').fadeOut('slow');
});
