$(document).ready(function() {
var $divs = $(".main div");
var $dLis = $(".dItem");
var $wWidth, $wHeight;
function changeWH() {
$wWidth = $(window).width();
$wHeight = $(window).height();
$divs.each(function() {
$(this).width($wWidth);
$(this).height($wHeight);
});
}
changeWH();
$(window).resize(changeWH);
funScroll();
$(window).scroll(funScroll);
function funScroll() {
var top = $(document).scrollTop();
$divs.each(function(index) {
var $divObj = $(this);
var thisTop = $divObj.offset().top;
if (top >= thisTop) {