$(document).ready(function(){

	// hovering the category tag - start	
      $('.categ').hover(function() {
			atitle = '#'+ this.title;
			hiddenTagValue = this.title;
			
			$('#hoveredCat').val(hiddenTagValue); // currently hovered tag
			$(atitle).addClass('show'); // show subs
	  });
	  
	// clicking the up button
     $('.btnUp').click(function() {
	 		list = '#'+ this.title;
			$(list).removeClass('show'); // hide subs
	  });
			
}); // end document