/*

	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(){ // Add class "hover" on dt when hover
		$(this).next().slideToggle('normal');
		if($(this).parent(".faqs").parent('.faq-box').css('height') == '310px'){
			$(this).parent(".faqs").parent('.faq-box').stop().animate({"height":90});
		}
		else{
			$(this).parent(".faqs").parent('.faq-box').stop().animate({"height":310});
		}
		// Toggle dd when the respective dt is clicked
		}); 
	
});
