$(document).ready(function() {
	$(".relatedNavigation li a").click(function(event) {
		event.preventDefault();
		event.stopPropagation();
		var href = $(this).attr("href");
		window.open(href);
		return false;
	})
 });
