function clearMe(oObj,val) {
  if(oObj.value==val) {
   oObj.value='';
  }
}

function fillMe(oObj,val) {
  if (oObj.value=='') {
    oObj.value=val
  }
}

function fixColumnHeights() {
  //var nCentre = $('#centre-column').css('height') ;
  //var nLeft = $('#left-column').css('height') ;

  var nCentre = $('#centre-column').height() ;
  var nLeft = $('#left-column').height() ;

  $('#left-column').css('height', nCentre);
  $('#left-column').css('min-height', nCentre);
  $('#right-column').css('height', nCentre);
  $('#right-column').css('min-height', nCentre);
}

$(document).ready(function(){
  /**
  * Mini Reccommend Form
  */
  /*
  $('a.recommend').click(function(){
      $('#globalsignin:visible').fadeOut();
      $('#globalsignup:visible').fadeOut();

      if ($('#globalrecommend:hidden').length>=1) {
        $('#globalrecommend').fadeIn();
      }else{
        $('#globalrecommend').fadeOut();
      }
      return false;
  });
  */

});

