﻿/// <reference path="jquery/jquery.js" />

$(document).ready(function() {
    $(".searchbutton").click(function() {
        search();
    })

    $("#langselector").change(function() {
        location = '../' + $("#langselector").val() + '/index.aspx';
    });

    $("#langselector").val(getCulture());

});

function search() {
    var keyword = $("#txtsearch").val();
    location = 'search.aspx?keyword=' +  keyword;
}

function getCulture() {
    return (window.location.pathname.split('/'))[1];
}