﻿$(document).ready(function() {
$("#accordion").accordion({ autoHeight: false, collapsible: true, active: false });
$("#productsearchaccordion").accordion({ autoHeight: false, navigation: true });

$("#productsearchaccordion>h3>a").click(function(event) {
    window.location.hash = this.hash;
});

});

