$(document).ready(function(){


/* ------------------------------------------ SLIDE_DOWN ------------------------------------------------ */
	
	/* Changing thedefault easing effect - will affect the slideUp/slideDown methods: */
	//$.easing.def = "easeOutBounce";

	/* Binding a click event handler to the links: */
	$('a.slidedown').click(function(e){
	
		/* Finding the drop down list that corresponds to the current section: */
		var dropDown = $(this).next();
		//alert(dropDown.html());
		/* Closing all other drop down sections, except the current one */
		$('.dropdown').not(dropDown).slideUp('slow');
		dropDown.slideToggle('slow');
		
		/* Preventing the default event (which would be to navigate the browser to the link's address) */
		e.preventDefault();
	});
	/* ------------------------------------------ /SLIDE_DOWN ------------------------------------------------ */

});
