//PRINT THE CURRENT DATE
$(function () {
   var tabContainers = $('div.rent_nnp > div');
   tabContainers.hide().filter(':first').show();
   $('div.rent_nnp ul.rent-navigation a').click(function () {
   tabContainers.hide();
   tabContainers.filter(this.hash).show();
   $('div.rent_nnp ul.rent-navigation a').removeClass('selected');
   $(this).addClass('selected');
   return false;
   }).filter(':first').click();
});

$(function () {
   var tabContainers2 = $('div.buy_magellan > div');
   tabContainers2.hide().filter(':first').show();
   $('div.buy_magellan ul.buy-navigation a').click(function () {
   tabContainers2.hide();
   tabContainers2.filter(this.hash).show();
   $('div.buy_magellan ul.buy-navigation a').removeClass('selected');
   $(this).addClass('selected');
   return false;
   }).filter(':first').click();
});
