function toggleFt(){
	$("#grpft").hide();
	if($('input[id=fattura-1]').is(':checked')){
			$("#grpft").show();
	}
}


$(document).ready(function(){
	/*
	$("input.itemCopie").numeric();
	$( "input.itemCopie" ).change(function( objEvent ){
		arrayInfo = $(this).attr("name").split('::');
		if($(this).val()>0){
			
			document.location = "/ecommerce/change/isbn/"+arrayInfo[1]+"/copie/"+$(this).val();
		} else {
			document.location = "/ecommerce/change/isbn/"+arrayInfo[1]+"/copie/1";
		}
	});
	*/
	$('select.selectCopie').each(function(index) {	
    var copieInfo = $(this).attr("name").split('::');
   // alert(copieInfo[2]);
    
	for(var i = 1; i<100; i++){
		if(copieInfo[2] == i){
		$(this).append($("<option></option>").attr("value","/ecommerce/change/isbn/"+copieInfo[1]+"/copie/"+i).attr("selected",true).text(i)); 
		}else{
		$(this).append($("<option></option>").attr("value","/ecommerce/change/isbn/"+copieInfo[1]+"/copie/"+i).text(i)); 
		}
	}
	
	
	});
	
	$('select.selectCopie').change(function(){
		document.location = $(this).val();
	});
	
	
	
	//$('.carrello').corner("round");
	
	$('#bonifico').hide();
	$('#bancasella').hide();
	var divname = $('#mezzo').val();
	$('#'+divname).show();
	
	$('#mezzo').change(function(){
		var divname = $(this).val();
		$('#bonifico').hide();
		$('#bancasella').hide();
		$('#'+divname).show();
	});

	toggleFt();$(":checkbox[id=fattura-1]").click(toggleFt); 


});



$(window).resize(function(){
});
