function initMenu() {
	$('.open').click(function() {
		var target = $(this).parent().parent().next();
		if($(target).is(':hidden')) {
			$(target).slideDown('slow');
			$(target).prev().children('.arrow').children().css('background-image', 'url(/img/arrow_gray_open.gif)');
			$(target).prev().children('.all').children().css('background-image', 'url(/img/quote_gray_up.gif)');
		}
		else{
			$(target).slideUp('slow');
			$(target).prev().children('.arrow').children().css('background-image', 'url(/img/arrow_gray.gif)');
			$(target).prev().children('.all').children().css('background-image', 'url(/img/quote_gray_down.gif)');
		}
		return false;
	});
	$('.prop_toggle').click(function() {
		var target = $(this).parent().next();
		if($(target).is(':hidden')) {
			$(target).slideDown('slow');
			$(this).css('background-image', 'url(/img/arrow_gray_open.gif)');
		}
		else{
			$(target).slideUp('slow');
			$(this).css('background-image', 'url(/img/arrow_gray.gif)');
		}
		return false;
	});
	$('#prop_show_all').click(function() {
		$('.prop_description').slideDown('slow');
		$('.prop_toggle').css('background-image', 'url(/img/arrow_gray_open.gif)');
		return false;
	});
	$('#prop_hide_all').click(function() {
		$('.prop_description').slideUp('slow');
		$('.prop_toggle').css('background-image', 'url(/img/arrow_gray.gif)');
		return false;
	});
}

$(document).ready(function() {
	initMenu();
	if(activeMenuItem) {
		$(activeMenuItem).trigger('click');
	}
});