$(function(){
	$('.prizer_blocks li').each(function(){
		$('a:eq(0)', this).eq(0).unbind('toggle').toggle(function() {
			$('div.arrow', this).css('background-position', '0px 0px');
			$('div.prizer_block', $(this).parent()).show(200);
			return false;
		}, function() {
			$('div.arrow', this).css('background-position', '0px -8px');
			$('div.prizer_block', $(this).parent()).hide(200);
			return false;
		});
		
		$('.prizer_block', this).each(function(){
			$('p strong a', this).unbind('toggle').toggle(function() {
				$('div.prizer_list', $(this).parents('.prizer_block').eq(0)).show(200);
				return false;
			}, function() {
				$('div.prizer_list', $(this).parents('.prizer_block').eq(0)).hide(200);
				return false;
			});
		});
		
		$('.prizer_block.nosurprise:first', this).css('margin-top', '20px');
		$('.prizer_block.nosurprise:first a', this).click();
	});
});