// JavaScript Document
function SetDiv() {
	$('#div_adv_top_banner_1_468x90').css("overflow", "hidden");
	$('#div_adv_top_banner_2_468x90').css("overflow", "hidden"); 
}
function ResizeDiv(w, h) {
	$('#div_adv_top_banner_2_468x90').animate({height: h}, 600);
}

function resize_topbanner(div_id, w, h, type)
{
	if(type == 'expand') 
	{
		StopBanner(div_id);
	} else if (type == 'collapse') {
		StartBanner(div_id);
	}
	$('#' + div_id).animate({height: h}, 600);
	$('#' + div_id).animate({width: w}, 600);
}
SetDiv();
