$(document).ready(function(){



	$('.faq-contain').hover(function(){
		blockId = '#' + $(this).attr("id");
		blockClass = '.' + $(this).attr("class");
		
		block = blockId + ' .faq-arrow';
		
		$(block).show();		
		},
		
		function(){
			$(block).stop().hide();
		}
	);
	
	$('.faq').click(function(){

		$(blockId + ' .faq-copy-contain').slideToggle(); 						  
		
	});
	
	$('.close-faq').click(function(){
		$(blockId + ' .faq-copy-contain').slideUp(); 						  
	});
	
	
});
