04 Apr kl. 15.24
Välkommen till min nya blogg!
$(document).ready(function() {
$('.menu').click(function(){
$( ".floatright" ).hide();
$("#sidebar").show("slow");
});
$( ".close" ).click(function() {
$( ".floatright" ).show();
$("#sidebar").hide("slow");
});
});