$(document).ready(function()
{
    $("#tpSlider div").css("background","#2589C7");
    galeriYap("a[href^=resim.php]");
    galeriYap("a[rel=lightbox]");
    
    $("#HSlide").cycle({
        fx: 'scrollUp',
        speed: 4000,
        pause: 1
    })
    
    $("#tpSlider").cycle({
        fx: 'scrollLeft'
    });
    
    $("#refs").cycle({
        fx: 'scrollUp',
        continuous: 1,
        pause: 1,
        easing: 'linear'
    });
    
});
function searchToogle(me,def)
{
    if(!def)
    {
        var def = "Aranacak Kelime";
    }
    
    var val = me.value;
    if(val==def){
        me.value = "";
    }else if(val==""){
        me.value = def;
    }
    
}

function galeriYap(a)
{
    $(a).lightBox();
    $("[src$=egitimtakvimi.png]").css("margin-top",5);
}

function frameDiyalog(baslik, adres,h, w)
{
    if(!h)
    {
        h = 300;
    }
    
    if(!w)
    {
        w = 450;
    }
    $.weeboxs.open('<iframe width="'+ w +'" height="'+ h +'" style="border:0; margin:0px 0px 0px 0px; padding:0px 0px 0px 0px;" scrolling="no" src="'+ adres +'">',{
        title: baslik,
        width:w,
        height:h
    });
    $('.dialog-content').css("overflow-x", "hidden").css("overflow-y", "hidden");
}