
$('.accordion').slideUp().prev('.toggler').hover(function () {
	$('<span></span>').html(' expand').appendTo($(this));
}, function() {
	$(this).children('span').remove();
}).click(function(){
	$(this).next('.accordion').slideToggle();
});


$('#slider').nivoSlider({ 
	effect: 'fade',
	controlNav: false
});
