function swapImage(state, obj) {
	switch (state) {
		case 0:
				obj.src = 'typo3/ext/bee4me_default_template/res/pics/layout/cart.gif';
			break;
		case 1:
				obj.src = 'typo3/ext/bee4me_default_template/res/pics/layout/cart-hover.gif';
			break;
	}
}

function commerce_toBasket(uid) {
	document.forms['basket_'+uid].submit();
}

function searchManufacturer(obj, link) {
	var s = obj.value.split('|');
	link += '?tx_fesearchintable_pi1[searchManufacturer]=1&tx_fesearchintable_pi1[manufacturerTitle]='+s[1]+'&tx_fesearchintable_pi1[sword]='+s[0];
	window.location.href = link;
}