/*
* script to open and close the menu on the left side
*/

$(document).ready(function() {
	$('.menu').hide();
	
	$('.reiter_text').hover(function() {
		$(this).css('cursor','pointer');
	}, function() {
		$(this).css('cursor','auto');
	});
	
	$('.reiter_text').click(function() {	
		$('.menu').hide('600');
		$(this).parent().next().toggle('600');
	});
});
