/* 
 * Little hide/show javascript
 */


$(document).ready(function(){

$('#content1').hide();

$('a#click').click(function(){
$('#content1').show('slow');
});

$('a#close').click(function(){
$('#content1').hide('slow');
})

});
