
$(document).ready(function() {
    $("#datum_erkez").datepicker({
		buttonImage: datepicker_button_image,
		buttonImageOnly: true,
		buttonText: datepicker_button_text,
		showOn: 'both',
		minDate: '0y 0m 0d',
		maxDate: '+10y 0m 0d'
	});
    $("#datum_tavoz").datepicker({
		buttonImage: datepicker_button_image,
		buttonImageOnly: true,
		buttonText: datepicker_button_text,
		showOn: 'both',
		minDate: '0y 0m 0d',
		maxDate: '+10y 0m 0d'
	});

    $(".defaultText").focus(function(srcc){
        if ($(this).val() == $(this)[0].title){
            $(this).removeClass("defaultTextActive");
            $(this).val("");
        }
    });
    
    $(".defaultText").blur(function(){
        if ($(this).val() == ""){
            $(this).addClass("defaultTextActive");
            $(this).val($(this)[0].title);
        }
    });
    
    $(".defaultText").blur();        

	$("#szobaform").submit(function(){
		$('.defaultTextActive').val('');
	});

	$(".info-target").ezpz_tooltip({
		contentPosition: 'rightStatic'
	});

});

