jQuery(function($){
	$('.question').click(function(){
			$(this).children('.answer').fadeToggle(1000);
	});
	/* left menu, show sub menu if active */
	$('.current-menu-item').each(function(){
		$(this).children('ul').show();
	});
	 $('img').removeAttr('alt');
	$('img').removeAttr('title');
	$('a').removeAttr('title');
	/*
	var right = $('#right').height()+248;
	var left = $('#left').height();
	
		if(left < right){
			$('#left').height(right);
		} */
	// alert($('#left').height(right));

});
