window.addEvent('domready', function() {
	/*
	Url: path to html file
	update: the element to include the html in	
			Note: this will replace the inner html in this element
			
	Copy paste this for each html file you need to load.
	if you need to replace multiple elements with a single html file, replace
	$('elementToUpdate') with $$(''), and include the correct selector(s)
	*/
	new Request.HTML({
		url:'/download/templates/html/quoteshtml',
		update: $('quote-messaging'),
		evalScripts: true
	}).get();	
});