jQuery(function(){
	jQuery('.erfassmich')
		.hover( 
			function () {
				but = "";
				but = jQuery(this).attr('name');
				jQuery(this).find('a').css('margin-left', '30px');

			},
			function () {
				if(jQuery(this).attr('name') == but){
					if(jQuery(this).find('div').attr('class') == 'SubMenuPunkt'){
						jQuery(this).find('a').css('margin-left', '0px');
					}
				}
			}
		);
});

