﻿$(document).ready(function(){
    $(".gyik_text").append("<span class='close'><a href='#'></a></span>");
	$(".gyik_lista ul li:has('.gyik_text')").each(function(){
		var oLi=$(this);
		var oA=$('a',oLi);
		var oGyikText=$('.gyik_text',oLi);
		var oGyikTextClose=$('.close',oGyikText);
		oA.bind('click',function(e){
			e.preventDefault();		
			oGyikText.slideDown();
		});
		oGyikTextClose.bind('click',function(e){
			e.preventDefault();		
			oGyikText.slideUp();
		});
	});

		
	$(".article table tbody tr:odd").css("background","#e2f0d9");
	$(".article table tbody tr:even").css("background","#f0f7eb");
	$(".article table thead tr").css("background","#E1E1E1");
	$(".article table thead tr td").css("font-weight","bold");


})