(function($){
  
  window.gethiik = { fn: {} };
  
  gethiik.fn.extLink = function(){
    $('.list li a').live('click', function(){
      this.target = '_blank';
    });
  }
  
  /*gethiik.fn.parallax = function(){
    $('#parallax').mousemove(function(e){
      var
        offset = $(this).offset(),
        xPos = e.pageX - offset.left,
        yPos = e.pageY - offset.top,
        mouseXPercent = Math.round(xPos / $(this).width() * 100),
        mouseYPercent = Math.round(yPos / $(this).height() * 100);
        
      $(this).children('img').each(function(){
        var
          diffX = $('#parallax').width() - $(this).width();
          diffY = $('#parallax').height() - $(this).height();
          myX = diffX * (mouseXPercent / 100);
          myY = diffY * (mouseYPercent / 100);
          cssObj = {
            'left': myX + 'px',
            'top': myY + 'px'
          }
          
        $(this).animate({left: myX, top: myY},{duration: 50, queue: false, easing: 'linear'});
      });
    });
  }*/
  
})(jQuery);
