/* Coding by Aykut Demirel 17.08.09 */

$(document).ready(function() {
	
	$('div.anamenu ul li a[rel="popup"]').parent().hover(
		function(){
			if($(this).children(':last').queue("fx").length < 1){
				$(this).addClass('popup');
				$(this).children(':last').show(250);
				$('#kararti').remove();
				$('#flash').append('<div id="kararti" '+'> ');
			}
			}, 
		function(){ 
			$(this).children(':last').slideUp(50,	function(){
														 $(this).parent().removeClass('popup'); 
														 });
				$('#kararti').remove();
			});
});

//function donuklastirma(element, donukDeger){
//    var oe = document.getElementById(element);
   // donuklastirma degeri
//    oe.setAttribute("style", "opacity:"+ donukDeger +";")
//    if (oe.style.setAttribute) // IE icin
//    oe.style.setAttribute("filter", "alpha(opacity="+ donukDeger*100 +");")
//}
