никогда раньше не пробовал, но похоже, что это связано с z-индексами, особенно в правиле # supersized-loader. Попробуйте изменить
#supersized-loader {
position: absolute;
top: 50%;
left: 50%;
z-index: 0;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
text-indent: -999em;
background: url(../img/progress.gif) no-repeat center center;
}
до
#supersized-loader {
position: absolute;
top: 50%;
left: 50%;
z-index: -1000; /*changed this*/
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
text-indent: -999em;
background: url(../img/progress.gif) no-repeat center center;
}
в supersized.css (или прямо на странице)