/*-----------------------------------------------------------------
	website: 	
	type:		
	desc:		
	Date:       
	Dependencies: (list jQuery version, and other plugins)              
------------------------------------------------------------------

	Coding Standards
	Make sure that this page is included at the END of the body tag.
	
	
	
	-----TOC--------
	1.0 Instantiate - $(function() {}
	2.0 create_
	3.0 delete_
	4.0 format_
	5.0 get_
	6.0 instantiate_
	7.0 is_
	8.0 listen_
	9.0 submit_
	10.0 update_
	11.0 validate_

------------------------------------------------------------------*/


//-----------------------------------------------------------------------------------
//1.0 Instantiate - $(function() {}
// functions called once DOM is ready.
//-----------------------------------------------------------------------------------


$(function() {
//alphabetical order
//call the functions here - define the functions below

	
	
}); //end of document.ready

//-----------------------------------------------------------------------------------
//2.0 create_
// 
//usually limited params
//returns html string or .append() straight out to the DOM
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//3.0 delete_
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//4.0 format_
//
//accepts parameter
//returns same variable formatted
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//5.0 get_
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//6.0 instantiate_
// 
// functions called from above document.ready that RUN when the DOM is ready.
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//7.0 is_
// 
// accepts paramater(s) to test
// returns bool
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//8.0 listen_
// 
// functions called from above document.ready that wait.
// These are for .click() and .hover() functions (excluding form submit buttons)
//-----------------------------------------------------------------------------------



//-----------------------------------------------------------------------------------
//9.0 submit_
// 
// functions that submit forms based on a button .click()
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//10.0 update_
//-----------------------------------------------------------------------------------


//-----------------------------------------------------------------------------------
//11.0 validate_
//-----------------------------------------------------------------------------------


