jQuery(function($){
	$('.tc-event').click(function(){
		$('#tc').slideToggle("normal");
	});
	$('a[@href^="http://"]').not($('a[@href^="http://www.breastcancermoms.com"]')).add($('a[@href$=".docx"],a[@href$=".doc"],a[@href$=".pdf"]')).click(function(){
		this.target = '_blank';
	});
});