$(document).ready(function(){


if ( $("#nw-umschalter").length > 0) {
  $("#nw-umschalter")
    .show()
    .hover(function(){							
      $(this).addClass("hover");
    },
	function(){							
      $(this).removeClass("hover");
    }
	)
    .click(function(){							
      $("#nw-liste").toggleClass("detail");
    }
	);
}

/*
if ( $(".submenu").length > 0) {
  $(".submenu img")
    .hover(function(){							
      $(this).fadeTo(100,0.6);
    },
	function(){							
      $(this).fadeTo(100,1);
    }
	)
}
*/


}); // ENDE Document ready
