function changeObj( num ) {
	$('.box').hide();
	$('.tabs').removeClass('selected');
	$('#box'+num).show();
	$('#tab'+num).addClass('selected');
}

function changeSom( num ) {
	$('.sombox').hide();
	$('#box'+num).show();
}

var box = 1;
function changeWine( num ) {
	$('#box'+box).hide();
	$('#box'+num).show();

    box = num;
}

function checkCount(count_id) {

	if ( document.getElementById(count_id).value == '0' ) {
		alert('Kosárba nem tehet 0 db terméket!\nKérem adjon meg nagyobb mennyiséget!');
		document.getElementById('basketItem').submit.disabled = true;
		return false;
	};

	if ( document.getElementById(count_id).value == '' ) {
		alert('Kérem adja meg a kívánt mennyiséget!');
		document.getElementById('basketItem').submit.disabled = true;
		return false;
	};
	$('#basketItem').submit();
	return false;
}

function EncheckCount(count_id) {

	if ( document.getElementById(count_id).value == '0' ) {
		alert('He may not put 0 pieces of product into a basket!\nPlease let him grant a bigger quantity!');
		document.getElementById('basketItem').submit.disabled = true;
		return false;
	};

	if ( document.getElementById(count_id).value == '' ) {
		alert('Please grants the desired quantity!');
		document.getElementById('basketItem').submit.disabled = true;
		return false;
	};
	$('#basketItem').submit();
	return false;
}

$(document).ready(function(){
	$('.action_price').tooltip({ 
		track: true, 
		delay: 0, 
		showBody: " - ", 
		fade: 250,
		top: -60,
		left: 5
	});
});
