$(document).ready(function() {
//Homepage show/hide
	$('#hideText').click(function() {

	    $('#homeContent').slideToggle('fast');
	
	}).toggle(function() {
	    $('#showHide').attr('src','/wp-content/themes/rcc/images/hideText.jpg');	
	    $('.entry-content').jScrollPane({showArrows:true, scrollbarWidth: 10});
	}, function() {
	    $('#showHide').attr('src','/wp-content/themes/rcc/images/showText.jpg');
	});
	
//Normal Page show/hide
	$('#hideTextInternal').click(function() {
	
	    $('#content').slideToggle('fast');
	
	}).toggle(function() {
	    $('#showHide').attr('src','/wp-content/themes/rcc/images/showText.jpg');	
	    $('.entry-content').jScrollPane({showArrows:true, scrollbarWidth: 10});
	}, function() {
	    $('#showHide').attr('src','/wp-content/themes/rcc/images/hideText.jpg');
	});
	
//Carousel
	$(function() {
    		$(".carousel").jCarouselLite({
        		btnNext: ".nextImage",
        		btnPrev: ".previous",
        		visible: 5,
       			auto: 3000,
        		speed: 400
    		});
	});
	
//JScrollPane
	$('.entry-content').jScrollPane({showArrows:true, scrollbarWidth: 10});
	
// Gallery
	$("#galleria").galleria({
		autoplay: 4000,
		transition: 'fade',
		transitionSpeed: 1500,
		thumbnails: false,
		showCounter: false,
		showInfo: false
	});
});
