/* Author: gea
laralupish.com
*/

var ll = {
  
  _init : function() {
    // iphone
    if ($(window).width() < 1024) {
      $('#container').css({ left: 0, marginLeft: 0 });
    }
    
    // /
    $('header h1').click(function() {
      window.location.href = "/";
    });
    
    // image thumbs
    $('.gallery').masonry({ columnWidth: 215 });
    
    // img popups
    $('.ce_gallery img').attr('rel', 'shadowbox');
    Shadowbox.init();
  }
  
}

$(document).ready(ll._init);
























