	function showAll()
	{
		$(".FAQcontentShow:visible").slideUp(600);
		$(".contentActive").animate({ 
         opacity: 1
           }, 600 );
	}
	
	function hideAll()
	{
		$(".FAQcontentShow:visible").slideUp(600);
		
	}
	
	function showContent(id){

		$(".FAQcontentShow:visible").slideUp(600);
		
		//$(".contentActive #contentShow_" + id).hover(function(){},function(){});
		$(".contentActive").animate({ 
         opacity: 0.4
           }, 600 );
		$("#contentShow_" + id).slideDown(600, function(){     $.scrollTo($("#content_" + id),{duration:600});$("#content_" + id).animate({ 
         opacity: 1
           }, 600 );      })
		//$(".contentActive").click(function(){
		//	alert("HERE");
		//	showContent($(this).attr("id"));
		//});
		//$("#content_" + id).click(function(){
			//alert("HERE");
			//showAll();
		//}
		//);
		return false;
	}
	
	function showContentFlash(id){

		$(".FAQcontentShow:visible").slideUp(600);
		
		//$(".contentActive #contentShow_" + id).hover(function(){},function(){});
		$(".contentActive").animate({ 
         opacity: 0.4
           }, 600 );
		$("#contentShow_" + id).slideDown(600, function(){     $.scrollTo($("#content_" + id),{duration:600});$("#content_" + id).animate({ 
         opacity: 1
           }, 600 );      })
		//$(".contentActive").click(function(){
		//	alert("HERE");
		//	showContent($(this).attr("id"));
		//});
		//$("#content_" + id).click(function(){
			//alert("HERE");
			//showAll();
		//}
		//);
	}
	
	
	$(document).ready(function() {
		$.localScroll({target:'#page-content', duration:600});
		$.scrollTo(0,0);		
		hideAll();
	})
	
	function backtotop() {
		$.localScroll({target:'#page-content', duration:600});
		$.scrollTo(0,0);
		$(".contentActive").animate({opacity: 1}, 600 );
		hideAll();
	}