$(document).ready( function () {

	/* print knop */
	$('#printme a').bind('click', function(){
		window.print();
	});
		
	$('.productItem').bind('click', function(e) {
		window.location = '/nl/shop/'+$(this).attr('id');
	});

	$("input[@type='checkbox']").change(function(){
		
		switch ($(this).val())
		{
			case '0':$(this).attr('value', 1);
							 break;
			case '1':$(this).attr('value', 0);
							 break;
			default: $(this).attr('value', 1);
						 	 break;
		}
		
	});
	
	$('#copyInfo').bind('click', function(e){
	
		$('#deliveryInfo input').each(function(){
				var facName = $(this).attr('name').replace('del','fac');
				$("input[@name='"+facName+"']").attr('value', $(this).attr('value'));
		});
		
		// copy country
		var countryNr = $("#delCountry").val();
		$("#facCountry").val(countryNr);
	});
	
	$.validator.messages.required = "";
	$("#commentForm").validate();

});