$(function() {

	// add hover/click
	$("div.diensten_list_opener").hover(function(){
		$(this).addClass('accover');
		var img = $('span.dienst_meericon img', $(this));
		img.attr('src','images/icon_view_active.gif');
	},function(){
		$(this).removeClass('accover');
		var img = $('span.dienst_meericon img', $(this));
		img.attr('src','images/icon_view.gif');
	}).click(function(){
		var l = $('a',this).attr('href');
		location.href = l;
	});

});