// <![CDATA[

$(document).ready(function(){
	
	/*
	|---------------------------------------------------------------
	| SET GLOBAL VARIABLES
	|---------------------------------------------------------------
	|
	| rp = relative path
	| ap = absolute path
	|
	*/
	http_root = $("body").attr("rel");
	rp_cms = 'applications/CMS/';
	rp_layout = 'views/includes/layouts/';
	rp_template = 'views/includes/templates/';
	rp_image_global = 'views/styles/images/global/';
	rp_image_local = 'views/styles/images/local/';
	img_loader = 'loader-2b.gif';
	
	/*
	|---------------------------------------------------------------
	| LOAD THE SITE GENERAL FUNCTIONS
	|---------------------------------------------------------------
	|
	*/
	resetElements();
	loadBackground();
	hoverLink();
	toggleTab();
	changeBackground();
	tooltip();
	postForm_message();
	loadMain();
	accessibility();
	
	/*
	|---------------------------------------------------------------
	| LOAD THE SITE BLOG FUNCTIONS
	|---------------------------------------------------------------
	|
	*/
	//loadComments();
	//postForm_signUp();
	
	/*
	|---------------------------------------------------------------
	| LOAD THE SITE Q&A FUNCTIONS
	|---------------------------------------------------------------
	|
	*/
	//qna();
	
	/*
	|---------------------------------------------------------------
	| LOAD THE CMS FUNCTIONS
	|---------------------------------------------------------------
	|
	*/
	loadCMS();
	
	/* disable the submit button so that you won't click it twice while the ajax is processing the form */	
	$('input[type=submit]').attr('disabled', 'disabled').css({opacity:0.4});

});

// ]]>
