 startList = function() {
			
	        // code for IE
	        if(!document.body.currentStyle) return;
	        var subs = document.getElementsByName('subcat');
			var subs2 = document.getElementsByName('submenu');
			
	        for(var i=0; i<subs.length; i++) {
		        var li = subs[i].parentNode;
				var deger;
				deger=0;
		        if(li && li.lastChild.style) {

			        li.onmouseover = function() {
				    this.lastChild.style.display = 'block';
			        }

					li.onmouseout = function (){
					
			        	this.lastChild.style.display = 'none';
						
			        }				

		
		        }
	        }
			
			for(var i=0; i<subs2.length; i++) {
			var li = subs2[i].parentNode;
			
			if(li && li.lastChild.style) {
				li.onmouseover = function() {
					this.lastChild.style.display = 'block';
				}
				li.onmouseout = function() {
					var cc=this.lastChild.style;
				
					//kaybet= function() {cc.display = 'none';}
					//hareket=setInterval(kaybet,2000);
					//clearInterval(hareket);
					cc.display = 'none';
				}
			}
		}
		
        }
        window.onload=startList;
