dir='up';
$(document).ready(function(){
}
)

function show_random(id){
  $.post(                 // load static page
  '/includes/get_random.php',
  {
  type : id
  },
  show_page
);   
}

function show_page(data){ 
  $("#random").html(data)
  $("#random").show()
}
function hide_random(){
  $("#random").hide()
  
}

