jQuery(document).ready(function() {
	jQuery(".leftMargin li a").each(function() {
	// Add pdf icons to pdf links
	var href =jQuery(this).attr('href');
	var LinkType ='(pdf)$';
			if(href.match(LinkType))
			{
				jQuery('<img src="/shell/hiltonorlando/assets/icons/pdficon14x17.gif" class="pdf" />').appendTo(this);
			}
			else{
	// Add icons to links 
	jQuery('<img src="/shell/hiltonorlando/assets/icons/arrow.gif" class="cfm" />').appendTo(this);
	}
	});
});