$(window).load(function () {
	$(".open_button").click(function(){
		$this = $(this);
		$this.parents(".story").removeClass("close").addClass("open");
	});
	$(".close_button").click(function(){
		$this = $(this);
		$this.parents(".story").removeClass("open").addClass("close");
	});


	$("div.mnyr_content div.data a[href='#nogo']").click(function() {
		$(this).parents("div.doctor").find("div.form").show();
		$(this).parents("div.data").hide();
		return false;
	});
	$("div.mnyr_content div.form a[href='#nogo']").click(function() {
		$(this).parents("div.doctor").find("div.data").show();
		$(this).parents("div.form").hide();
		return false;
	});

	$("div.mnyr_content div.form form input.text").focus(function() {
		if (this.value == this.defaultValue) {
			this.value = "";
		}
	});
	$("div.mnyr_content div.form form input.text").blur(function() {
		if (this.value == "") {
			this.value = this.defaultValue;
		}
	});

	$("div.mnyr_content div.form form input.kt_gomb").click(function() {
		chkData($(this).attr("id"));
		return false;
	});
});

function chkData(id){
	if((document.getElementById('myemail_'+id).value == '') || (document.getElementById('mytext_'+id).value == '')){
		alert('Mindkét mezőt ki kell töltenie!');
		return false;
	} else {
		document.getElementById('ddform_'+id).submit();
	}
}
