$(document).ready(function () {
	$('#shows ul li:last-child').addClass('noBorder');
	$("#music .entry").each(function(index){
		if(index%4==3) $(this).addClass("fix");
	});
	$("#video .entry").each(function(index){
		if(index%2==1) $(this).addClass("fix");
	});
	$("#gallery .entry").each(function(index){
		if(index%3==2) $(this).addClass("fix");
	});
	$("#tour tbody tr").each(function(index){
		if(index%2==1) $(this).addClass("alt");
	});
});
