/*

	jQuery - External Links
	Created by Andrea Cima Serniotti - http://www.madeincima.eu

*/


$(document).ready(function () {
// ---- FAQs 
	$('.faqs dd').hide(); // Hide all DDs inside .faqs
	$('.faqs dt').hover(function(){
		$(this).addClass('hover')},function(){$(this).removeClass('hover')}).click(function(){ 
			var strCurrQ = this.innerHTML; 				// store the current Question's
			$('.faqs dt').each(function(index) {   			// loop through all Questions (DT)
				if (strCurrQ == $(this).text()) {			// Are we on the current clicked question
					$(this).next().slideToggle('normal');	// Toggle the show-hide as this is the clicked question
				} else {
					$(this).next().slideUp('normal');		// Not looking at this item so slide it up
				}
  			});
	}); 	
});
