// JavaScript Document

/*	----------------------------
 *		Document Ready
 *	----------------------------
 */	
$(document).ready(function() {
	jQueryGlobalFunctions();
	jQueryLocalFunctions();
	return false;
});

/*	----------------------------
 *		Global Functions
 *	----------------------------
 */	
function jQueryGlobalFunctions()
{
	/*
	 *******************************************
	 *	Optional - Slideshows
	 *******************************************
	 */
		if ($(".pics").length) {
			$('#slideshow').cycle();
		}
}

function jQueryLocalFunctions(){} // STUB DO NOT USE
