// JavaScript Document

function show(view){
	document.getElementById(view).style.display = '';
	
	}

function hide(hide){
	document.getElementById(hide).style.display = 'none';
}
	
//jQuery
		$( document ).ready( function(){
			$( '.FAQ_Question' ).click( function() {
				if( $(this).parent().next('dd').css('display') == 'block' )
					$(this).parent().next('dd').css('display', 'none');		  
				else
					$(this).parent().next('dd').css('display', 'block');
					
				return false;
			} );
		} );
