/**************************************************
 * Client: Essentials of Management
 * Development: SwissVBS <http://www.swissvbs.com>
 * JS: Adrian Astorga <aastorga@swissvbs.com>
 * Date: June 2009
 *
 **************************************************/

/**************************************************
 * Execute when the DOM is ready
 **************************************************/

jQuery(document).ready(function()
{
	// Hidden
	jQuery('.faq-answers').hide();
});

/**************************************************
 * Functions
 **************************************************/

jQuery(function()
{
	/**************************************************
	 * Display seminar's details
	 **************************************************/
	jQuery(".faq-questions").click(function(){

		var $details = jQuery(this).parent().children("div.faq-answers");

		if($details.is(":visible")) {
			$details.slideUp();
		}

		if(!$details.is(":visible")) {
			$details.show();
		}

		return false;
	});
});