function chooseOption(val,id){
	 $('group-'+id).set('value', val);
	 classname =  $('link-'+val).get('class');
	 $('option-text-'+id).set('text', classname);
	 TB_remove();
}

function checkOptions(){
	var returnValue = true;
	$$('input.group-option').each(function(item){
		if(item.get('value')=="0"){
			returnValue = false;
		}
	});
	if(!returnValue){
		alert('Please select from each of the options before adding to your cart');
	}
	return returnValue;
}

function deleteFromCart(id){
	if(confirm("Are you sure you wish to remove this item?")==true){
		$('deleteItem').set('value', id);
	}else{
		return false;
	}
	
}