/**************************************************
 * Execute when the DOM is ready
 **************************************************/

jQuery(document).ready(function()
{
	jQuery('.course-description').hide();
});

/**************************************************
 * Functions
 **************************************************/

jQuery(function()
{
	jQuery(".view-details-wrapper").click(function(){

		var $details = jQuery(this).parent().parent().children("div.course-description");

		if($details.is(":visible")) {
			$details.slideUp();
		}

		if(!$details.is(":visible")) {
			$details.slideToggle("slow");
		}

		return false;
	});
});