$(document).ready(function(){
	$('a.faqexp').toggle(function(event) {
//		alert(this);
		$($(this).next()).show();
		return false;
	},
	function(event) {
		$($(this).next()).hide();
		return false;
	});

});

