$(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;
		})
		
		$("#site_f").toggle(function() {
			$("#v1_ex").text('-');
			$("#subnav_v1").show();
			return false;
		}, function() {
			$("#v1_ex").text('+');
			$("#subnav_v1").hide();
			return false;
		})

});

function fadeInFeaturedSpecialCoupon(){
	$('.featured-special-content-coupon').fadeIn('slow');
}

function fadeInFeaturedSpecial(){
	$('.featured-special-content').fadeIn('slow');
}
