function toggleDivAll()
{
	for (i=1;i<=7;i++){
	getItems = "content" + i;
    var elem = document.getElementById( getItems );
    if (elem) {
	if( elem.style.position != 'absolute' )
    {
        elem.style.position = 'absolute';
        elem.style.left = '-4000px';
    }
    else
    {
        elem.style.position = 'relative';
        elem.style.left = '0px';
    }
	}
	}
}

function toggleDiv( elemID )
{
	getItems = "content" + elemID;
    var elem = document.getElementById( getItems );
    if( elem.style.position != 'absolute' )
    {
        elem.style.position = 'absolute';
        elem.style.left = '-4000px';
    }
    else
    {
        elem.style.position = 'relative';
        elem.style.left = '0px';
    }
}
