/* ----- CYCLE ----- */
$(document).ready(function() {
    $('#masthead').cycle({
		fx: 'fade',
	});
});

/* ----- QUICK LINKS ----- */
$('.quick-links-one').toggle(function() {
	$('.quick-links-one-items').animate({height: 'show'}, 200);
}, function() {
	$('.quick-links-one-items').animate({height:'hide'}, 200);
});

$('.quick-links-two').toggle(function() {
	$('.quick-links-two-items').animate({height:'show'}, 200);
}, function() {
	$('.quick-links-two-items').animate({height:'hide'}, 200);
});

