﻿if (screen.height <= 768) {

}

$(document).ready(function() {
    $(this).delay(1000, function() {
        $('#eyecandysub').fadeIn(800);
    });
});

$(document).ready(function() {
    $(this).delay(1600, function() {
        $('#splattersub').fadeIn(800);
    });
});

$(document).ready(function() {
    $(this).delay(1600, function() {
    $("#bagsub").fadeIn(800);
    $("#featuresub").fadeIn(800);
    });
});    


jQuery.fn.delay = function(time, func) {
    this.each(function() {
        setTimeout(func, time);
    });

    return this;
};


