var gotham = new Object();


function getStarImg(vote)
{
	if( vote<0.5 )
	{ }
	else if( vote<1 )
	{ }
	else if( vote<1.5 )
	{ } 
	else if( vote<2 )
	{ }
	else if( vote<2.5 )
	{ } 
	else if( vote<3 )
	{ }
	else if( vote<3.5 )
	{ } 
	else if( vote<4 )
	{ }
	else if( vote<4.5 )
	{ } 
	else
	{ }
}

function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

