// JavaScript Document

$(document).ready(function() {
	var current_div = '#newsmod-display-first';
	var next_div = '#newsmod-display-second';
  $('.news-item > a').click(function(ev) {
		var tmp_div = '';
		ev.preventDefault();
    $(next_div).load($(this).attr('href'), null, function() {
  		$(current_div).fadeOut(250, function() {
  			$(current_div).html($(next_div).html());
				$(current_div).fadeIn(250);
  		});		
		});
  });
});