jQuery(document).ready(
		function() { 
			jQuery('div.faq2').hide();
		    jQuery('div.faq_open').nextAll('div.faq').eq(0).show();
		    jQuery('.title_faq').click(function() {
		        var opened = jQuery(this).hasClass('faq_open');
		        jQuery(this).toggleClass('faq_open').next('div.faq').eq(0).slideToggle('fast');
		        return false;
		    });
		}
		);

jQuery(document).ready(
		
	function() {
		jQuery('.close_popup_js').click(
			function() {
				jQuery('.layer_popup_js').hide('fast') .css("display","none");
				jQuery('.popup_js').hide('fast');
				return false;
			}
		);

		jQuery('.open_popup_js').click(
			function() {
				jQuery('.layer_popup_js') .css({ display: "block", opacity: "0.5" });
				jQuery('.popup_js').show('fast');
				return false;
			}
		);
	}
);

