﻿$(document).ready(function(){
	//Hide the tooglebox when page load
	$(".togglebox").hide();
	
	//slide up and down when click over 
	$(".link").click(function(){
			// slide toggle effect set to slow you can set it to fast too.
			
			
			$(this).next(".togglebox").slideToggle("slow");
			
			
			return true;
	});
	
	$(".img").bind("click", function() {
		var src = ($(this).attr("src") === "web_img/lermais_faq.png")
		? "web_img/down_faq.png"
		: "web_img/lermais_faq.png";
		$(this).attr("src", src);
	});
	
	});
//-->
