$(document).ready(function() {
	$("#brochure_pdf_placeholder").each(function() {
		var url = document.location.toString();
		var anchor = "AssetTracking";
		if ( url.match("#") )
		{
			var anchor = url.split("#")[1];
		}
		$(this).html('<iframe src="pdfs/' + anchor + '.pdf" width="100%" height="100%" scrolling="no" frameborder="0" ></iframe>');
	});
	$("#content.brochure ul li a").click(function() {
		var href = this.href;
		if ( href.match("#") )
		{
			var anchor = href.split("#")[1];
			$("#brochure_pdf_placeholder").html('<iframe src="pdfs/' + anchor + '.pdf" width="100%" height="100%" scrolling="no" frameborder="0" ></iframe>');
		}
	});
});