// JavaScript Document

// jQuery.fn.stripTags = function() { return this.replaceWith( this.html().replace(/</?(font)\s*[\w=#"\s;:]*/?>/gi, '') ); };


$(document).ready(function(){

// $(".newsClip embed").replaceWith("<a href='http://yesprep.org/index.php/TheAnswer'> <img style='display:block; margin-bottom:3px;' src='http://yesprep.org/img/home/video-content.gif' /> </a>");


// -------------- Launch external links in new windows ------------------

$("a").attr('target','_blank');
	$("a[@href^='http://yesprep']").attr('target','_self');
	$("a[@href^='http://www.yesprep']").attr('target','_self');
	$("a[@href^='http://yesprepsecure']").attr('target','_self');
	$("a[@href^='https://yesprepsecure']").attr('target','_self');
	$("a[@href^='https://secure.yesprep']").attr('target','_self');

// ----------------------------------------------------------------------



// More to come...










});