/*!
 * Simple preload script
 * written for EuphilenaJaime.com
 *
 * requires: jQuery
 *
 * author: Kenny Shen (www.northpole.sg)
 */
 
$(document).ready(function() {
    $('#preload').hide();
    // lazy load, ids that doesn't exists have no effect
    $('#editorial-home').fadeIn();
    $('#editorial').fadeIn();
    $('#portraits').fadeIn();
})
