body {
	font: normal 11px verdana;
	}

/* De Shit om het ook werkend te maken in IE van http://www.naarvoren.nl/artikel/hover.html#cssmenu */

#downloader {
   behavior:url("#default#download");
}

var element = document.getElementById('downloader');
element.startDownload('file.txt', handleFileSource);

function handleFileSource(src) {
   alert(src); // inhoud van het bestand
}

body {
   behavior:url("csshover.htc");
}

/* De Shit om het ook werkend te maken in IE van http://www.naarvoren.nl/artikel/hover.html#cssmenu */

 ul ul {
   display:none;		
}
	
li:hover ul {
   display:block;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	/* left: 149px; */ /* Set 1px less than menu width */
        top: 0px; 
	display: none;
	-moz-opacity        : 0.75;
    	filter              : alpha(opacity=75);
    	opacity             : 0.75;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	font-size:12px;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	}

/* Kleur submenu */
ul li a:hover {color: #E2144A; background: #f9f9f9; } /* Hover Styles */

	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
