﻿/* ON LOAD FUNCTIONS 
   -------------------------------------------
   List all functions from this JS file to be
   initiated on load of the page.
*/
/* ------------------------------------------- */
addLoadEvent(landingFunctions);
/* ------------------------------------------- */


function landingFunctions(){
    if (document.getElementById('selBoutiqueCats')!=null){
        AddEventListener(document.getElementById("selBoutiqueCats"), "change", function(e){
            document.location.href = document.getElementById("selBoutiqueCats").value;
        }, false);
    }
    if (document.getElementById('selBoutiqueDesigners')!=null){
        AddEventListener(document.getElementById("selBoutiqueDesigners"), "change", function(e){
            document.location.href = document.getElementById("selBoutiqueDesigners").value;
        }, false);
    }
}
