﻿jQuery.noConflict();
var timeout_id;
(function($){$(function(){
    $('#menu li').bind("mouseenter", function(){$(this).find('div.kategori_yazilar').show();
    	    window.clearTimeout(timeout_id);
	    if(!$('div#content div.center').hasClass('zindex1')) $('div#content div.center').addClass('zindex1');
	    if(!$('div#banner').hasClass('zindex1')) $('div#banner').addClass('zindex1');
	});
    //----
    $('#menu li').bind("mouseleave", function(){$(this).find('div.kategori_yazilar').hide();
       timeout_id = window.setTimeout('removeZindex()', 1000);
    });

    $('div.kategori_yazilar a').bind("mouseover", function(){window.clearTimeout(timeout_id);});
    $('div.kategori_yazilar a').bind("mouseout", function(){timeout_id = setTimeout('removeZindex()', 1000);})
})})(jQuery);

function removeZindex()
{
    if(jQuery('div#content div.center').hasClass('zindex1')) jQuery('div#content div.center').removeClass('zindex1');
    if(jQuery('div#banner').hasClass('zindex1')) jQuery('div#banner').removeClass('zindex1');
    //alert('remove');
}
