
$(document).ready(function() {
  
  // Hides the user bar initially
  $('#user-bar').hide();
  // User bar appears and disappers when clicked
$('.q1').click(function() {
  $('#user-bar').toggle('slow', function() {
    // Animation complete.
  });
});
	// Removes links to side bar menu items with no children
    $("li.menuparent > a").removeAttr("href");
 }
);


;

