  var jetzt = new Date();

  var jahr = jetzt.getFullYear();




  

$(function () {
	//Counter
	var checked = $('#Checked').val();
	var minutes =  $('#Minute').val();
	var hours =  $('#Stunde').val();
	var days =  $('#Tag').val();
	var months =  $('#Monat').val();
	var headline = $('#Headline').val();
	
    var monat= months;
  	var tag  = days;
  	var stunde = hours;
	var minute = minutes;
	
	if (checked == 1) {
		$('#countDown').show();	
	}else{
		$('#countDown').hide();	
	}
	
	$('#countDown h2').empty().text(headline)
	
  	$('#MyCountdown').countdown({until: new Date(jahr,monat-01,tag,stunde,minute)});
	
	
	//Stelalronda Gewinnzeit anzeigen
	var checked2 = $('#Checked2').val();
	var time =  $('#ctime').val();
	
	if (checked2 == 1) {
		$('#cTime2').show();	
	}else{
		$('#cTime2').hide();	
	}
		
	$('#cTime2 #thetime').empty().append(time)
	

 });



