function random_content(){
var mycontent=new Array()
//specify random content below.

mycontent[1]='<span class="largebody">As much as I love Canada and Toronto, it would be difficult for both my husband and I to find work that would provide us with the same lifestyle that we have here.</span>'

mycontent[2]='<span class="largebody">We believe strongly in universal health coverage. Since moving to Canada, we are able to be self-employed and not have the added burden of paying outrageous amounts of cash for inadequate health care as it would have been in the States.</span>'

mycontent[3]='<span class="largebody">I am beginning to think that some Canadians really do hate Americans. I am not convinced that it is only the government that they dislike any longer. Not that I have had anyone attack me, but it is just a sense I am getting.</span>'

mycontent[4]='<span class="largebody">The U.S. still has an admirable pioneering spirit that glorifies competition to the extent that it excludes those less well-equipped to succeed: those living with poverty, those whose first language is not English, those without a college education, those with disabilities, those living with physical or mental illness, those whose skin is not white.</span>'

mycontent[5]='<span class="largebody">When we are back home in Canada, I find myself feeling rather protective of him. I do not like it when he gets a barrage of questions and anti-American sentiment just because of his birthplace.</span>'

mycontent[6]='<span class="largebody">I sometimes see myself as an outsider looking in. The ingrained aggression to pursue goals. I see so much of parents pushing their children to the limit to succeed past themselves. Its scary. Kids here grow up faster in my opinion.</span>'

mycontent[7]='<span class="largebody">Just a few days ago I was surprised by an assumption that my mother voiced about me. She explained that I had been away a long time and that maybe she did not know me as well as she did my sisters, who stayed in Canada.</span>'

mycontent[8]='<span class="largebody">Once, travelling from Canada to the U.S. on my TN, I was asked a series of questions by the INS official. It was like a game show: he would respond with "wrong answer" and threaten deportation.</span>'

mycontent[9]='<span class="largebody">I have been amazed at how expensive it has been to immigrate, and the bureaucracy is staggering, at times. That said, every person I have encountered has been friendly and understanding, and I will take the bureaucracy in Canada over that in the U.S. any day.</span>'

mycontent[10]='<span class="largebody">A friend of mine, also from the States, asked me about this whole citizenship issue and asked if he should become Canadian. What about "American values?" I suggested that being able to participate fully in society as a civic minded individual is perhaps the most important value that I have taken with me to Canada.</span>'





var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()

