$(function () {



    // a.blank jako target blank
	$("a.blank").each(function () {
		$(this).click(function () {
			window.open(this.href);
			return false;
		});
	});


    
});

