var carrousel = {
    goBedrijfspagina: function (actionEvent){
        var bedrijfsPagina = actionEvent.getSource().findComponent("urlBedrijfspagina");
        var url = bedrijfsPagina.getValue();
        alert(url);
        document.location = url;
    }
    , goZoekbanen: function (actionEvent){
        var baseurl = actionEvent.getSource().findComponent("baseUrl");
        var url = baseurl.getValue() + "/job-list.xml";
        alert(url);
        document.location = url;
    }
    , goZoekbanenPerBedrijf: function (actionEvent){
        var baseurl = actionEvent.getSource().findComponent("baseUrl").getValue();
        var bedrijfNaam = actionEvent.getSource().findComponent("displayNaam").getValue();
        var url = baseurl + "/vacatures/bedrijf/" + bedrijfNaam;
        url += "?WT.ac=home_" + bedrijfNaam;
        alert(url);
        document.location = url;
    }
};
