/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(function() {
  $('ul.hover_block li').hover(function(){
    $(this).find('#slideDiv').animate({
      top:'182px'
    },{
      queue:false,
      duration:500
    });
  }, function(){
    $(this).find('#slideDiv').animate({
      top:'0px'
    },{
      queue:false,
      duration:500
    });
  });
  $('ul.hover_block2 li').hover(function(){
    $(this).find('#slideDiv').animate({
      left:'370px'
    },{
      queue:false,
      duration:500
    });
  }, function(){
    $(this).find('#slideDiv').animate({
      left:'0px'
    },{
      queue:false,
      duration:500
    });
  });
});
