// encloses jquery in a separate scope to prevent conflicts with other libraries while using '$'
(function($){

	// runs contained scripts when the DOM is ready
	$(function(){
	
		// place code here
	
	});

})(jQuery);
