$(document).ready(function(){
	
	// Home
	
	$('#looking-for-something').click(function() {
	    if ($('#popular-links-wrapper').is(':visible')) {
	        $('#looking-for-something').removeClass('active');
	        $('#popular-links-wrapper').fadeOut('400');
	    }
	    else {
	        $('#looking-for-something').addClass('active');
	        $('#popular-links-wrapper').fadeIn('400');
	    }
	});
	
	$('#popular-links-close').click(function() {
	    $('#looking-for-something').removeClass('active');
	    $('#popular-links-wrapper').fadeOut('400');
	});
	
	
	// Culinary Village
	
	$('.cv-date-events').each(function() {
		$(this).children('.culinary-demo-item:last').addClass('culinary-demo-item-last');
	});
	
	$('.cv-date-wrapper h2').toggle(function (e) {
    	e.preventDefault();
       	$(this).parent().siblings('.cv-date-events').slideDown();
		$(this).children('.open-cv-date').text('Close Schedule');
    }, function (e) {
      	e.preventDefault();
      	$(this).parent().siblings('.cv-date-events').slideUp();
		$(this).children('.open-cv-date').text('View Schedule');
    });
    	
});
