$(document).ready(function(){

	// active menu stuff	    
	var path = 'http://'+location.host+'/'+location.pathname.split('/')[1];  
	
	var home = "/";
	if (path == home) {
		var $nav = $('#menu ul a[href="' + home + '"]');
	} else {
		var $nav = $('#menu ul a[href="' + path + '"], #submenu ul a[href="' + path + '"]');
	}
	
	$nav.addClass('active');
	
	$("div.small:nth-child(4n+1)").addClass("clear");
	
	// $("table tbody tr:nth-child(even)").addClass('stripe');
});