$(document).ready(function(){
	$('#featured-leaver').click(function(){
		$('#featured').slideToggle(700, 'easeInOutExpo');
		$(this).toggleClass('active');
		if(!$('#featured').children().length){
			$('#featured').load('/includes/featured.php');
		}
	});
	$('body').delegate('a[href^="http"]:not([href*="clayant"])', 'click', function(){  
		window.open(this.href);  
		return false; 
	});
});
