jQuery(document).ready(function($){ 
	
	/* TOGGLE */
	$('div.toggle').click(function () {
		$(this).next('div.toggle_content').toggle(250);
	});
	
	$('div.toggle').toggle(
		function () { $(this).css('background-position', 'left -72px'); },
		function () { $(this).css('background-position', 'left 8px'); }
	);
	
	/* REMOVE THE TITLES OF MENU for 2.9 */
	$('#menu').find('a').attr({ title: '' });
});

