$(document).ready(function() {	
	// override some default options
	jQuery('div.post-body').expander({
		slicePoint:       150,  // default is 100
		expandText:       '', // default is 'read more...'
		collapseTimer:    0, // re-collapses after 5 seconds; default is 0, so no re-collapsing
		userCollapseText: ''  // default is '[collapse expanded text]'
	});
});

$(window).load(function() {
	jQuery('#homeSlider').nivoSlider({
		effect: 'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed: 600, //Slide transition speed
		pauseTime: 6000,
		startSlide: 0, //Set starting Slide (0 index)
		directionNav: false, //Next & Prev
		directionNavHide: true, //Only show on hover
		controlNav: false, //1,2,3...
		controlNavThumbs: false, //Use thumbnails for Control Nav
		controlNavThumbsFromRel: false, //Use image rel for thumbs
		controlNavThumbsSearch: '.jpg', //Replace this with...
		controlNavThumbsReplace: '_th.jpg', //...this in thumb Image src
		keyboardNav: false, //Use left & right arrows
		pauseOnHover: false, //Stop animation while hovering
		manualAdvance: false, //Force manual transitions
		captionOpacity: 0.8 //Universal caption opacity
	});
});


