var sw=0;
function showbanner()
{
$('#year_big').fadeIn(800);
//$('#year_big').show();
 //$('#left_banner').hide();
}

function hidebanner()
{
$('#year_big').fadeOut(800);
 //$('#year_big').hide();
 $('#left_banner').show();
}

function switchbanner()
{
$('#left_banner').toggle();
$('#year_big').toggle();
/*i
f (sw==0)
{
$('#year_big').fadeIn(800);
 $('#left_banner').hide();
 sw=1;
}
else
{
$('#year_big').fadeOut(800);
 $('#left_banner').show();
 sw=0;
}*/
}
