
  $(document).ready(function(){

    $("#band").keyup(function (e) {

     	var x = document.getElementById('band').value;
		
    	if( x.length < 3)
		{
			$("#band_results").text('Sie muessen mehr als 2 Zeichen eingeben!');
			
		}else{

     		 $("#band_results").load("/check.php", { 'q': x, 'type': "band" });
		}
 	});
 
 
    $("#location").keyup(function (e) {

    	var x = document.getElementById('location').value;
		
    	if( x.length < 3)
		{
			$("#location_results").text('Sie muessen mehr als 2 Zeichen eingeben!');
			
		}else{
			
			$("#location_results").load("/check.php", { 'q': x, 'type': "location" });
		}
 	});
    });


    function toggleIn(field_id)
    {
    	 $(document).ready(function()
    	 {
    	 	if ($("#"+field_id+":first").is(":hidden")) 
     		{ 
				$("#"+field_id).slideDown(1000);
     		}
     		
    	 });

    }
    
    function toggleOut(field_id)
    {
    	 $(document).ready(function()
    	 {
    	 	  if ($("#"+field_id+":first").is(":visible")) 
     		  { 
				$("#"+field_id).slideUp(1000);
     		  }  
    	 });

    }
    
    function savetypeSetter(modulename, type)
    {
    	document.getElementById(modulename+'_type').value = type;
    }
  