// slider

$(document).ready(function() {
    $('.hero').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});


// more info links

$('h3.more').click(function(event) {
	$(this).next().slideToggle('fast', function(){
		if($(this).is(':hidden')){
			$(this).prev().find('span').html($(this).prev().find('span').html().replace('-', '+'));
		} else {
			$(this).prev().find('span').html($(this).prev().find('span').html().replace('+', '-'));
		}	
	});

	
	event.preventDefault();
});

