// JavaScript Document
$(function(){
	$('#categories_dropdown').selectmenu({
		menuWidth: 300,
		width: 140,
		maxHeight: Math.round($(window).height()*0.5)
	});
	$('#more_categories_dropdown').selectmenu({
		menuWidth: 300,
		width: 160
	});		
	$('#locations_dropdown_primary').selectmenu({
		menuWidth: 195,
		width: 195,
		maxHeight: Math.round($(window).height()*0.5)
	});	
	$('#locations_dropdown_secondary').selectmenu({
		menuWidth: 195,
		width: 195,
		maxHeight: Math.round($(window).height()*0.5)
	});	

});		

