$(function() {
	$('#showCoursesCK').click(function() {
		$('#showCoursesDIV').toggle();
	});
	
		$(".showAllButton").toggle(function() {
			$(".showAllButton").text('- Show Top 4');
			$(".showAll").show();
			return false;
		}, function() {
			$(".showAllButton").text('+ Show All');
			$(".showAll").hide();
			return false;
		})


});

function fadeInFeaturedSpecial(){
	$('.featured-special-content').fadeIn('slow');
}