function baglink(state, id) {
	if (state == 'over') {
		document.getElementById('checkoutlink' + id).style.backgroundColor = '#26bcd6';
		document.getElementById('cblink' + id).style.color = '#ffffff';
	} else { 
		document.getElementById('checkoutlink' + id).style.backgroundColor = '#ffffff';
		document.getElementById('cblink' + id).style.color = '#666666';
	}
}