$(document).ready(function() {
	
	/*****************************
	 * Hovereffect for News-Icons
	 ****************************/
	$('div.symbol_dd_head a').hover(	
		function() {		
			var hovered_a_class = $(this).attr('class');
			$('#'+hovered_a_class).show();
		},
		function() {
			var hovered_a_class = $(this).attr('class');
			$('#'+hovered_a_class).hide();
		}
	);
	
	$('ul.symbol_dd').hover(	
		function() {
			$(this).show();
		},
		function() {
			$(this).hide();
		}
	);
	
	
	
	/*****************************
	 * Show full comment
	 ****************************/
	$('div.comment span.comment a').click(	
		function() {		
			var hovered_a_class = $(this).attr('class');
			$('#'+hovered_a_class).show();
			$('.'+hovered_a_class).hide();
			return false;
		}
	);
	
});
