// LocalScroll Settings //////////////////////////////////////

 $(document).ready(function() { 
	$('.tabs_list_group, .sidebar table').localScroll();
	
	
	$('.sidebar table.month_layout a').click(function () { 
      
	  $('body.calendar .item.highlight').removeClass('highlight');
	  
	  var name = $(this).attr('href');
	  var value = name.split('#');
	  var number = value[1].split('-');
	  var target = '.title a.' + String(number[1]);
	  
	  //alert (target);
	  
	  $(target).parent().parent().addClass('highlight');
	  
	  /* FIX ///////////
	  	
		make target actually find the right item in the list!!!!!!!!!
	  	
	  */
	  });
	
	});

