var scroll;
$(document).ready(function() {
	scroll = function(target) {
	var targetOffset = $('#' + target).offset().top;
	$('html, body').animate({scrollTop:targetOffset}, 'slow');
	}
});

function canOrder()
{
	if( $('#cod').attr('checked')
	 || $('#card').attr('checked')
	 || $('#paypal').attr('checked')
	 || $('#ekonto').attr('checked') ) {

		if(  $('#name').val() == ''
		 ||  $('#email').val() == ''
		 ||  $('#city').val() == ''
		 ||  $('#street').val() == ''
		 ||  $('#zip').val() == '' ) {
			alert('Nevyplnili jste povinná pole');
		 } else
			return true;

	} else {
		alert('Nevybrali jste způsob platby');
	}


	return false;
}

function changeSubmitVal()
{
	if($('#submitb').val()=='uložit')
		$('#submitb').val('uložit a odeslat email');
	else
		$('#submitb').val('uložit');
}


function playVideo(video)
{
    //$('#videoBox').hide('slow');
    $('#videoBox').html('<iframe width="590" height="366" src="'+ Videos[video] +'" frameborder="0" allowfullscreen></iframe>');
    //$('#videoBox').show('slow');
    return false;
}

