/* this function will link to the corresponding news page according to the 'linkhref' attribute given by each news element
 * the var 'hostUrl' is provided in the constants.js */
$(document).ready(
		function() {
			$(".news-pane-list li").click(
					function() {
						window.location = "http://" + hostUrl
								+ "/company/news/" + $(this).attr("linkhref");

					});
		});
$(document).ready(
		function() {
			$(".news-admin-pane-list li").click(
					function() {
						window.location = "http://" + hostUrl
								+ "/admin/news/" + $(this).attr("linkhref");

					});
		});

