jQuery(document).ready(function($){	
	$("a").each(function() {
		if (this.hostname && this.hostname !== location.hostname) {
			// alert(this.hostname);
			$(this).attr("target", "_blank");	
		}
	});

	$("div.fs_popular_pages_widget > p").remove();
	$("div.fs_popular_pages_widget").append("<p></p>");
	// $.preloadCssImages();
	
});