$(document).ready(function(){
function div_fadein(){
  var currentId = $(this).attr("id"); 
  $("#selectform_"+$(this).attr("id").substr(6,8)+" .innerdiv").show();
  $("#bild_"+$(this).attr("id").substr(6,8)+"").hide();
  $('#select_'+$(this).attr("id").substr(6,8)+"").selectbox();
}


function div_fadeout(){
  $("#selectform_"+$(this).attr("id").substr(6,8)+" .innerdiv").fadeOut(300);
 $("#bild_"+$(this).attr("id").substr(6,8)+"").show();
}

var config = {    
     interval: 10,
     sensitivity: 12,
     over: div_fadein, // function = onMouseOver callback (REQUIRED)    
     timeout: 50, // number = milliseconds delay before onMouseOut    
     out: div_fadeout// function = onMouseOut callback (REQUIRED)    
};

$(".ganzerbereich div").hoverIntent( config )
});

