//------------------------------------
//	ENGAGE.JS
//	Author: 	Engage Interactive
//	Requires:	jquery 1.3.2
//				
//				
//------------------------------------

$(function(){
//BEGIN jQuery

	// Break out of an Iframe
	if(top.location != self.location){
		top.location = self.location.href
	}

	//TARGET BLANK REPLACEMENT
	
	$(".external").attr("target","_blank");


});
