/*
load the iframe css, and set all links to break the iframe
*/
if(top != self) {
	document.write('<link href="/css/iframe.css" rel="stylesheet" type="text/css" />');

	Event.observe(document, 'dom:loaded', function() {
		//$$('.content_header h1').first().update('<a href="/">Piper <span>Partners</span></a>');
		$$('a').each(function(elt) { elt.setAttribute('target', '_blank'); });
	});
}
