﻿$(document).ready(function() {

    //set selectstore/selected brand/selected price dropdownvalues


    if ($('#selectedstore').text() != "") {
        $('#selectstorefacet').text($('#selectedstore').text());
    }

    if ($('#selectedbrand').text() != "") {
        $('#selectbrandfacet').text($('#selectedbrand').text());
    }

    if ($('#selectedprice').text() != "") {
        $('#selectpricefacet').text($('#selectedprice').text());
    }


    $('#selectstorefacet').click(function() {
        $("#brandfacet").hide();
        $("#pricefacet").hide();
        $("#storefacet").toggle('slow');

    });

    $('#selectbrandfacet').click(function() {

        $("#brandfacettitle").css('left', '161px');
        $("#storefacet").hide();
        $("#pricefacet").hide();
        $("#brandfacet").toggle('slow');


    });

    $('#selectpricefacet').click(function() {
        $("#pricefacettitle").css('left', '321px');
        $("#storefacet").hide();
        $("#brandfacet").hide();
        $("#pricefacet").toggle('slow');

    });


});
