$('document').ready(function(){
    $('select[name=varianta]').unbind('change');
    $('select[name=varianta]').bind('change',function(){
		
        var data = variantaRelData($('select[name=varianta] option:selected').attr('rel'));
        if(data.cena) $('.js_cena').html(format_cena(data.cena));
        if(data.cena_puvodni) $('.js_cena_puvodni').html(format_cena(data.cena_puvodni));
        if(data.cena_puvodni > data.cena){
            $('.none').show();
        } else {
            $('.none').hide();
        }

    });
  
    /*$('.sub').click(function(){
		if ($('#varianta').val() == "" || $('#ciselnik-smer').val() == "" || $('input.js_ciselniky[type=radio]:checked').size()==0 ){
			alert("Vyplňte rozměr, barvu a směr!");
			return false;
		} else {
			return true;
		}
	});*/
	/*
    $('.varianta_img').click(function(){
        var hash = $(this).attr('rel').split("##");
        $('h2.varianta,.js_variantaNazev').html($(this).attr('title'));
        $('input#varianta'+hash[0]).attr('checked','checked');
        $('img.varianta').attr('src',hash[1]);
        $('img.varianta').parent('a').attr('href',hash[2]);
        $('.js_cena').html(hash[3]);
        $('.js_kod').html(hash[6]);
    });*/
		
});
