$(document).ready(function() {
	$('.entry-content').hide();
	$('.showhide').text('read more');
	$('.showhide').each(function() {
		$(this).click(function() {
			$(this).next().toggle(400);
			if ($(this).text() == 'hide') {
				$(this).text('read more');
			} else {
				$(this).text('hide');
			}
		});

	});

	// Download links are protected from bots
	$('.download').click(function() {
		var file = $(this).attr('title');
		window.location = '/download.php?file=' + file;
		return false;
	});

});

