/**
 * Let's get this show on the road.
 */
jQuery(document).ready(function ($) {
	$('html').removeClass('no-js');
	
	var colors = ['red', 'orange', 'blue'];
	
	// no good way to programmatically handle colored buttons via wp menus
	$('#home-navigation .button').each(function (i, e) {
		$(e).css('backgroundColor', colors[i % colors.length]);
	});
	
	// do swooshy things with the home page sidebar navigation
	$('#home-navigation .sub-menu').hide();
	
	$('#home-navigation .button').click(function (e) {
		e.preventDefault();
		
		if ($(this).next('.sub-menu').length) {
			$(this).next('.sub-menu').slideToggle('fast');
		}
		
		return false;
	});
});
