// JavaScript Document
function ResetCenterDiv(div_id) {
	
	$('#' + div_id).css("overflow", "hidden");
	$('#' + div_id).css("height", "70px");
}

function ResizeCenterDiv(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);
}

ResetCenterDiv('div_adv_center_banner_1_468x60');