jQuery(function($){
	
    $('a.external').click(function(){
    	window.open(this.href);
    	return false;
    });        
	
	$("div.media, div.ad").click(function(){
	      window.location=$(this).find("h2 a").attr("href"); return false;
	});	

});
