$(document).ready(function(){
	
	// --------------------- GLOBAL
	
	//Give show/hide functionality to dropdown menus
	$('.show-hide-link').toggle(
		      function () {
				linkText = $(this).html();
				$(this).html(linkText + " (x)")
				$(this).parents().nextAll('.dropdown:first').slideDown();
		      },
		      function () {
				$(this).html(linkText);
		        $(this).parents().nextAll('.dropdown:first').slideUp();
		      }
		);
		
	
	// --------------------- LESSONS
	$('.product .dropdown').hide();
	
})