/*
 * IT-Werft Animations 0.4
 */

$(document).ready(function() {

   $('.ani_itwBack').hover(function(){
       $(this).addClass('itwAnimated itwBack')
   }, function(){
       $(this).removeClass('itwAnimated itwBack');
   });

   $('.ani_itwRotate').hover(function(){
       $(this).addClass('itwAnimated itwRotate')
   }, function(){
       $(this).removeClass('itwAnimated itwRotate');
   });

   $('.ani_itwHorizontalStretch').hover(function(){
       $(this).addClass('itwAnimated itwHorizontalStretch')
   }, function(){
       $(this).removeClass('itwAnimated itwHorizontalStretch');
   });

   $('.ani_itwVerticalStretch').hover(function(){
       $(this).addClass('itwAnimated itwVerticalStretch')
   }, function(){
       $(this).removeClass('itwAnimated itwVerticalStretch');
   });

   $('.ani_itwShiver').hover(function(){
       $(this).addClass('itwAnimated itwShiver')
   }, function(){
       $(this).removeClass('itwAnimated itwShiver');
   });
});


