$(document).ready(function(){
	$('img').ifixpng();
	
	$('.__merken').click(function(){
		$.post('pages/parts/save.php', {
			'checked': this.checked,
			'id_event_date': this.alt
		},function(){
         if (document.location.href.match(/subpage=meinetermine/)) {
            document.location.reload();
         }
      });
	});
   $('.price_select input').click(function(){
      if ($(this).attr('checked')) {
         $(this).parent().parent().find('.'+$(this).attr('class')).attr('checked','');
         $(this).attr('checked', 'checked');
      } else {
         $(this).parent().parent().find('.'+$(this).attr('class')).attr('checked','');
      }
      var amount = 0;
      for (var i = 0; i < $('.price_select input:checked').length; i++) {
         var value = $($('.price_select input:checked')[i]).val();
         if (value.match(/EURO [0-9]+\,-/)) {
            amount += parseInt(value.match(/EURO ([0-9]+)\,-/)[1]);
         }
      }
      $('input[name=temp_count_fix]').val(amount); // REMOVE! YOU CAN MANIPULATE THIS!
      amount += 30;
      $('.totalprice').html(amount);
   });
});
