// *****************************************************************************************
// Script:		js/common.js
// Author(s):		Guillaume Lambert - guillaume@falzhobel.ca
// 			Alex Gignac - alex@ax2.ca
//
// Last Update:		Dec 2009
//
// Common javascript functions including dom-ready commands
//
// Functions:
//	-
//
// *****************************************************************************************

/**
 * $(function(){ });
 * based on jQuery's event observe when dom is ready, scripts to be loaded
 *
 */

$(function(){
	
	// global calls
	//----------------------------------------------------------------------------------
	
	// ...
	
	// homepage
	//----------------------------------------------------------------------------------
	if (sectionID == 'home') {
	
		// section specific code goes here
		
	}
	 
});