$(document).ready(function(){
	$(".sort_by_dropdown").click(function() {
		
		$(this).parent().find(".foldout_sort_by").removeClass('hide').addClass('show');
		
		$(this).parent().hover(function() {
			}, function(){
		$(this).parent().find(".foldout_sort_by").removeClass('show').addClass('hide');
		});
	});
});

