to my website where you can learn more about me and my research, check out my students and learn what it is like to work with me, access teaching resources, as well as check out my blog. I am a family scholar, relationship scientist, and demographer. I use multiple disciplinary approaches in my research, from social psychology to family sociology, from economics to lifespan human development. I am passionate about interdisciplinary family research and my own family.
// <![CDATA[
var howOften = 5; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6
// place your images, text, etc in the array elements here
var items = new Array();
items[0]="

“; //a linked image
items[1]=”

“; //a linked image
items[2]=”

“; //a linked image
items[3]=”

“; //a linked image
function rotater() {
document.getElementById(“placeholder”).innerHTML = items[current];
current = (current==items.length-1) ? 0 : current + 1;
setTimeout(“rotater()”,howOften*1000);
}
function rotater() {
if(document.layers) {
document.placeholderlayer.document.write(items[current]);
document.placeholderlayer.document.close();
}
if(ns6)document.getElementById(“placeholderdiv”).innerHTML=items[current]
if(document.all)
placeholderdiv.innerHTML=items[current];
current = (current==items.length-1) ? 0 : current + 1; //increment or reset
setTimeout(“rotater()”,howOften*1000);
}
window.onload=rotater;
// ]]>