$(document).ready(function(){
	var links = $(".swshow_news_medium .news-list-header a").add(".swshow_news_medium .news-medium-image a");
	//alert(links.length);	
	links.removeAttr("href");
	
	var newsItems = $("div.swshow_news_medium");
	
	newsItems.each(function(){
		$(this).click(function(){
			document.location.href = ($(this).find(".news-list-trumpettext a").eq(0).attr("href"));
		});
		$(this).css("cursor", "pointer");
	});
	
});
