$(document).ready(function(){
$("#m1").hover(function () {$(this).css({'background-image' : 'url(/img/m2.gif)','cursor':'hand'});},  function () {$(this).css({'background-image' : 'url(/img/m1.gif)','cursor':''});});
$("#m2").hover(function () {$(this).css({'background-image' : 'url(/img/m2.gif)','cursor':'hand'});},  function () {$(this).css({'background-image' : 'url(/img/m1.gif)','cursor':''});});
$("#m3").hover(function () {$(this).css({'background-image' : 'url(/img/m2.gif)','cursor':'hand'});},  function () {$(this).css({'background-image' : 'url(/img/m1.gif)','cursor':''});});
$("#m5").hover(function () {$(this).css({'background-image' : 'url(/img/m3.gif)','cursor':'hand'});},  function () {$(this).css({'background-image' : '','cursor':''});});
$("#menu").animate({ top:"-10px"}, 500 );



setTimeout("fxmove1()",1000);
});

function fxmove1()
{
$("#move1").animate({ top:"-20px", height:"240px"}, 600 );
setTimeout("fxmove2()",1000);
}

function fxmove2()
{$("#move2").animate({ width:"340px"}, 600 );
setTimeout("fxmove3()",1000);
}
function fxmove3()
{$("#move21").slideDown("slow");
}


