function expandCreative(asdf)
{

	$('fixedWrapper').setStyle({marginTop: '0px'});
	$('expandWrapper').setStyle({marginTop: '-175px', height:'300px',width:'400px'});
	
	/*
	var expandWrapper = document.getElementById("expandWrapper");
	var fixedWrapper = document.getElementById("fixedWrapper")
	
	//y
	fixedWrapper.style.marginTop="0px";
	expandWrapper.style.marginTop="-175px;"
	expandWrapper.style.height="300px";
	
	//x
	expandWrapper.style.width="400px";
	*/
	
}
function collapseCreative(asdf)
{
	$('fixedWrapper').setStyle({marginTop: '-175px'});
	$('expandWrapper').setStyle({marginTop: '0px', height:'125px',width:'210px'});
	/*
	var expandWrapper = document.getElementById("expandWrapper");
	var fixedWrapper = document.getElementById("fixedWrapper")
	
	//y
	fixedWrapper.style.marginTop="-175px";
	expandWrapper.style.marginTop="0px;"
	expandWrapper.style.height="125px";
	//x
	expandWrapper.style.width="210px";	
	*/
}
