$(document).ready(function() { $('.menu').click(function(){ $( ".floatright" ).hide(); $("#sidebar").show("slow"); }); $( ".close" ).click(function() { $( ".floatright" ).show(); $("#sidebar").hide("slow"); }); });