// Show/HIde Script
$(document).ready(function() {
  $('div.post#newest:eq(0)> div.entry').hide();
  $('div.post#newest:eq(0)> h2').click(function() {
	$(this).next().slideToggle('fast');
  });
   $('div.post#newer:eq(0)> div.entry').hide();
  $('div.post#newer:eq(0)> h2').click(function() {
	$(this).next().slideToggle('fast');
  });
   $('div.post#new:eq(0)> div.entry').hide();
  $('div.post#new:eq(0)> h2').click(function() {
	$(this).next().slideToggle('fast');
  });
   $('div.post#older:eq(0)> div.entry').hide();
  $('div.post#older:eq(0)> h2').click(function() {
	$(this).next().slideToggle('fast');
  });
});


// Clear Search Form
function clearForm(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
