// JavaScript Document

$(document).ready(function(){
witetable();
mainmovie();
});


function witetable(){
$("#top-main").html('<table><tr>\
<td class="w1"></td>\
<td class="w2"></td>\
<td class="w3"></td>\
<td class="w4"></td>\
<td class="w5"></td>\
</tr></table>');
}

function mainmovie(){
$("#top-main table td.w1").animate({opacity:0},700,function(){
$("#top-main table td.w2").animate({opacity:0},700,function(){
$("#top-main table td.w3").animate({opacity:0},700,function(){
$("#top-main table td.w4").animate({opacity:0},700,function(){
$("#top-main table td.w5").animate({opacity:0},700,function(){
setTimeout(bgposi,2000);
});
});
});
});
});
//setTimeout(mainmovie,1500);
}

function bgposi(){
$("#top-main").animate({backgroundPosition:"(0 -280px)"},500,"swing",function(){
$(this).animate({opacity:0},1000,function(){
$(this).animate({opacity:1},1000);
});
});
}

