$(function() {  
    
    //cufonlar
    Cufon.replace('#site-menu li .toplevel', { hover: true });
    Cufon.replace('h3,h4,h5', { hover: true });
    
    //dropdown
    $("ul.dropdown li").hover(function(){
    $(this).addClass("hover");
    $('ul:first',this).css('visibility', 'visible');
    }, function(){
          $(this).removeClass("hover");
          $('ul:first',this).css('visibility', 'hidden');  
        });  
    $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");
    
    //slide-tab
    $('.slide-tab').tabSwitch('create', { type:'toggle', toggle:'fade', width:715, height:325 });
    $('.slide-button').click(function(e){
        $('.slide-tab').tabSwitch('moveTo', {index: parseInt($(this).attr("rel"))} );
        e.preventDefault();
    });
    $('.slide-tab').tabSwitch('startAuto',{interval:5000});
    
    //slide-tab-duyuru
    $('.slide-duyuru').tabSwitch('create', { type:'toggle', toggle:'fade', width:680, height:22 });
    $('.slide-duyuru').tabSwitch('startAuto',{interval:3000});
       
    
});
