	 $(function() {

			$('#basic a').tooltip({ 

				track: true, 

				delay: 0, 

				showURL: false, 

				showBody: " - ", 

				fade: 250,

				extraClass: "tooltip"

			});

				

			<!--edits the main text on the about page-->		

			$(".click").editable("passThru/saveAbout.php", { 

				type      : 'textarea',

				cancel    : 'Cancel',

				submit    : 'Submit Changes',

				indicator : 'Saving...',

				style  : "inherit", 

				cssclass: "editinplace",

				tooltip   : "Click to edit..."

	    });	

			

			<!--test code to edit the title on the about page-->

			$(".clickTitle").editable("passThru/saveAbout.php", { 

				type      : 'textarea',

				cancel    : 'Cancel',

				submit    : 'Submit Changes',

				indicator : 'Saving...',

				style  : "inherit", 

				cssclass: "editinplaceTitle",

				tooltip   : "Click to edit..."

	    });

			

			<!--edits the store hours on the sidebar-->

			$(".clickHour").editable("passThru/saveHours.php", { 

				type      : 'textarea',

				cancel    : 'Cancel',

				submit    : 'Submit',

				indicator : 'Saving...',

				style  : "inherit", 

				cssclass: "editinplaceHour",

				tooltip   : "Click to edit..."

	    });

			

			<!--edits the store date on the side bar-->

			$(".clickDate").editable("passThru/saveLastUpdated.php", { 

				type      : 'textarea',

				cancel    : 'Cancel',

				submit    : 'Submit',

				indicator : 'Saving...',

				style  : "inherit", 

				cssclass: "editinplaceDate",

				tooltip   : "Click to edit..."

	    });

			

		<!--edits the store date on the homepage-->

			$(".clickHome").editable("passThru/saveHome.php", { 

				type      : 'textarea',

				cancel    : 'Cancel',

				submit    : 'Submit Changes',

				indicator : 'Saving...',

				style  : "inherit", 

				cssclass: "editinplaceHome",

				tooltip   : "Click to edit..."

	    });

			

		<!--edits the department info-->

		$(".clickDepartment").editable("passThru/saveDepartment.php", { 

			type      : 'textarea',

			cancel    : 'Cancel',

			submit    : 'Submit Changes',

			indicator : 'Saving...',

			style  : "inherit", 

			cssclass: "editinplaceHome",

			tooltip   : "Click to edit..."

	    });
		
		$(".clickNursery").editable("passThru/saveNursery.php", { 

			type      : 'textarea',

			cancel    : 'Cancel',

			submit    : 'Submit Changes',

			indicator : 'Saving...',

			style  : "inherit", 

			cssclass: "editinplaceHome",

			tooltip   : "Click to edit..."

	    });
		
		$(".clickFloral").editable("passThru/saveFloral.php", { 

			type      : 'textarea',

			cancel    : 'Cancel',

			submit    : 'Submit Changes',

			indicator : 'Saving...',

			style  : "inherit", 

			cssclass: "editinplaceHome",

			tooltip   : "Click to edit..."

	    });
		
		$(".clickLandscape").editable("passThru/saveLandscape.php", { 

			type      : 'textarea',

			cancel    : 'Cancel',

			submit    : 'Submit Changes',

			indicator : 'Saving...',

			style  : "inherit", 

			cssclass: "editinplaceHome",

			tooltip   : "Click to edit..."

	    });
		
		$(".clickGreenhouse").editable("passThru/saveGreenhouse.php", { 

			type      : 'textarea',

			cancel    : 'Cancel',

			submit    : 'Submit Changes',

			indicator : 'Saving...',

			style  : "inherit", 

			cssclass: "editinplaceHome",

			tooltip   : "Click to edit..."

	    });

				

	});