// JavaScript Document

jQuery.noConflict();

jQuery(document).ready(function () {
	jQuery('#sddm li').filter(':has(ul)').hover(
		function () {
			//show submenu
			jQuery('ul', this).stop(true, true).show('slow');
		}, 
		function () {
			//hide  submenu
			jQuery('ul', this).stop(true, true).delay(750).hide('slow');
		}
	);
	
	// Ausblenden des Link-Icons bei verlinkten Bildern im div#right-content
	jQuery('#right-content img').parent().css('background', '0');
});
