jQuery(function($) {

	/**
	 * plan a height
	 */

	height = Array();
	$('#top_big_box td').each(function(num) {
		if(num%2 == 0) {
			even = $(this).find('a');
			heightEven = $(this).find('a').height();
		} else {
			odd = $(this).find('a');
			heightOdd = $(this).find('a').height();
		}
		if(num%2 == 1) {
			if(heightEven > heightOdd) {
				odd.height(heightEven);
			} else {
				even.height(heightOdd);
			}
		}
	});
});
