$(document).ready(function() {	
	// Home page slider
	$('#coda-slider-1').codaSlider({
		autoSlide: true,
		autoSlideInterval: 6000,
		autoSlideStopWhenClicked: true,
		firstPanelToLoad: 1,
		dynamicArrows: false,
		slideEaseDuration: 2000
	});

});

$(function() {
	var textToHide = $('.post-body').text().substring(220);
	var visibleText = $('.post-body').text().substring(1, 220);

	$('.post-body')
	.html(visibleText + ('<span>' + textToHide + '</span>'))
	.append(' ...')
	.click(function() {
		$(this).find('span').toggle();
		$(this).find('a:last').hide();
	});

	$('.post-body span').hide();
});
