/**
 * init.js
 * @author R.A. Ray
 * @version 1.0.1
 * @date 04/22/08 
 * 
 * @requires /scripts/jquery/core.js
 */

function init() 
{	
	$( '.req-js' ).show();
	$( 'no-js' ).hide();
};

$( document ).ready
( 
	function() 
	{
	 	init();
	}
);
