// JavaScript Document

$(document).ready(function() {
	$('#top_banner_ad .bannergroup').cycle({
		fx: 'scrollLeft'
	});	
	
	equalHeight($('#coupons_category ul ul'))
	
});

function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).innerHeight();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
