/*Test js (JavaScript file)
 *      File		: /js/mainJs.js
 *      Copyright 	: 2010 cearo@www.cearocorp.com - Christiaan Rogiers
 *      Version		: 001        Build		: 002	DT	:	201003101116
 *      Purpose		: js file supporting main index page of the CeaRO_WEB web site
 * 					: previous builds saved as test.js
 *      Version Ctrl: git
 *      Editor		: Geany 0.18
 *      Platform	: Ubuntu Linux 9.10 - Apache 2.2.12 - mySQL 5.1
 *      			: phpMyAdmin 3.2.21 - WebMin 1.5    - PHP 
 */

if ($) {
	
	$(document).ready(
		function() {
			$('p#p1MidSection').addClass('jQReady');
			$('p#p1MidSection').text('The midSection section of this page is telling you jQuery is READY for your perusal.');	
		}
	);
}

