jQuery(function(){
	jscheck();
})

/********************************************************
**	Expand Lump Sum Options
**	id = id of object
*********************************************************/
function jscheck(){
	var $i=6;
	if(document.images){
		var ex$i;
		while($i>=1){
			if(jQuery('#ex'+$i+'_body'))
			{
				jQuery('#ex'+$i+'_body').hide();
				jQuery('#ex'+$i+'_title').css({background:'url(images/button+.gif) no-repeat 2px 11px'});
			}
			$i--;
		}
	}
}

function expand(i) {
	if(jQuery('#ex'+i+'_body')){
		if(jQuery('#ex'+i+'_title').is('.open')){
			jQuery('#ex'+i+'_body').hide();
			jQuery('#ex'+i+'_title').css({background:'url(images/button+.gif) no-repeat 2px 11px'}).removeClass('open').addClass('closed');
		}
		else {
			jQuery('#ex'+i+'_body').show();
			jQuery('#ex'+i+'_title').css({background:'url(images/button-.gif) no-repeat 2px 11px'}).removeClass('closed').addClass('open');
		}
	}	
}