$(document).ready(function(){

	$('.input_integer').numeric();
	$('.input_date').numeric({allow:"."});
    $('.input_time').numeric({allow:":"});

    $('#bitv_search').focusin(function(){
    	var value = $('#bitv_search').val();
    	if (value == 'Seite durchsuchen') {
    		$('#bitv_search').val('');
    		$('#bitv_search').addClass('input_search_focus');
    	}
    });

    $('#bitv_search').focusout(function(){
    	var value = $('#bitv_search').val();
    	if (value == 'Seite durchsuchen' || value == '') {
    		$('#bitv_search').val('Seite durchsuchen');
    		$('#bitv_search').removeClass('input_search_focus');
    	}
    });

    $(".fancy_gallery").fancybox({
    	'zoomSpeedIn': 300,
        'zoomSpeedOut': 300
    });

    $('#registration_type').change(function() {
    	if ($('#registration_type').val() == 'company') {
    		$('#company_data').slideDown();
    	}
    	else {
    		$('#company_data').slideUp();
    	}
    });

    $('#registration_as').change(function() {
    	var id = $('#registration_as').val();

    	if ($('#' + id).val() > 0) {
    		$('#costs_data').slideDown();
    	}
    	else {
    		$('#costs_data').slideUp();
    	}
    });


});


