// Slinding Header by Tom Bosch www.tombosch.nl

$( "#open" ).click(function(){
  $( "#slide" ).animate( { height: "+=260px" }, { queue: false, duration: 500 })
  $( "#close" ).fadeIn('fast')
  $( "#open" ).css( "display","none" )
});

$( "#close" ).click(function(){
  $( "#slide" ).animate( { height: "-=260px" }, { queue: false, duration: 500 })
  $( "#close" ).fadeIn('fast')
  $( "#close" ).css( "display","none" )
  $( "#open" ).fadeIn( 'fast' )
});


