function onCont(id) {
 $('#funnel').css({ 'height':'0px'});

 $('#isOutFunnel').val('0');

 $('#funnel')
  .css({ 'left':$('#' + id).offset().left + 100 +'px','top':$('#' + id).offset().top +'px'})
  .html($('#disc-' + id).html())
  .animate({ height:'100px','left':$('#' + id).offset().left + 168 +'px','top':$('#' + id).offset().top + 10 +'px' }
   ,function(){
    if ($('#isOutFunnel').val() == '1') {
     $('#funnel').hide();
    }
   }
  );
 }

function outCont(id) {
 $('#isOutFunnel').val('1');
 $('#funnel').hide();
}

$(function(){

 $('#funnel').mouseover(
  function(){
   $('#isOutFunnel').val('0');
   $('#funnel').show();
  });
 $('#funnel').mouseout(
  function(){
   $('#isOutFunnel').val('1');
   $('#funnel').hide();
 });
});
