// Set-up

$(document).ready(function() {
$('section img').imagesLoaded(function() {
$(this).unbind('load');
$('section').animate({opacity: 0.0}, 0)
.show()
.animate({opacity: 1.0}, {duration: 1000, easing: 'jswing', complete: function() {
if ($.browser.msie) {
this.style.removeAttribute('filter');
}
}
});
});
});
