﻿$(function(){
    var searchForm=$("div.releases-search form");
    var searchDD=$("div.releases-search select");
    var Option = "";
    if($defaultlang == "th-th")
        Option = "เลือกทั้งหมด";
    else
        Option = "Select all";
    
    $.get("../Presentation-Year.aspx?lang=" + $defaultlang,function(json){
        var rs=eval("("+json+")");
        searchDD.append("<option value=''>" + Option +"</option>");
        $.each(rs,function(i,o){
            searchDD.append("<option value='"+o.value+"'>"+o.text+"</option>");
        });
        searchDD.val($defaultYears).change(function(){
            window.location.href=searchForm.attr("action")+"?year="+searchDD.val();
        });
    });
    
    $("li.pre-file a").each(function(){
        $(this).load("../Presentation-FileSize.aspx?file="+escape($(this).attr("href").replace("http://pressroomcms.ps.co.th/cms/contentmgt/downloadfile.rails?src=","")));
    });
    
});