/* Beginr Media Javascript File */

(function ($) {
  Drupal.behaviors.beginr_theme = {
     attach: function (context, settings) {

      $('#header li').hover(function() {
        var backpos = $(this).css('backgroundPosition');
        var index = backpos.indexOf('px');
        $(this).animate({backgroundPosition: '0' + backpos.substr(index)}, 200);
      }, function() {
        var backpos = $(this).css('backgroundPosition');
        var index = backpos.indexOf('px');
        $(this).animate({backgroundPosition: '-10' + backpos.substr(index)}, 200);
      });
      
    }
  };
}(jQuery));;

