//quote array
	quoteList = new Array();
	
quoteList[0] = "HDR 2009: Most migrants, internal and international, reap gains in the form of higher incomes, better access to education and health, and improved prospects for their children.";
quoteList[1] = "HDR 2009: Large gains to human development can be achieved by lowering the barriers to movement and improving the treatment of movers.";
quoteList[2] = "HDR 2009: The two most important dimensions of the mobility agenda that offer scope for better policies are admissions and treatment.";
quoteList[3] = "HDR 2009: While not a substitute for broader development efforts, migration can be a vital strategy for households and families seeking to diversify and improve their livelihoods.";
quoteList[4] = "HDR 2009: Theories that emphasize purely economic factors fail to capture the broader social framework in which decisions to migrate are taken.";
quoteList[5] = "HDR 2009: While there is considerable intrinsic value to mobility, its instrumental value for furthering other dimensions of human development can also be of enormous significance.";
quoteList[6] = "HDR 2009: We see mobility as vital to human development and movement as a natural expression of people’s desire to choose how and where to lead their lives.";
quoteList[7] = "HDR 2009: Movement both within and between nations is predominantly driven by the search for better opportunities.";
quoteList[8] = "HDR 2009: Unfortunately, migration data remain weak. It is much easier for policy makers to count the international movements of shoes and cell&ndash;phones than of nurses and construction workers.";
quoteList[9] = "HDR 2009: Population movements have played a vital role in the structural transformation of economies throughout history.";
quoteList[10] = "HDR 2009: Current forecasts are that the world&rsquo;s population will grow by a third over the next four decades.";
quoteList[11] = "HDR 2009: Movement largely reflects people&rsquo;s need to improve their livelihoods, this movement is constrained by policy and economic barriers.";
quoteList[12] = "HDR 2009: Barriers to health services arise due to financial constraints as well as status, cultural and language differences.";
quoteList[13] = "HDR 2009: Above all, trafficking is associated with restrictions on human freedom and violations of basic human rights.";
quoteList[14] = "HDR 2009: Trafficking can be most effectively combated through better opportunities and awareness at home&mdash;the ability to say &lsquo;no&rsquo; to traffickers is the best defence.";
quoteList[15] = "HDR 2009: Despite these financial rewards, separation is typically a painful decision incurring high emotional costs for both the mover and those left behind.";
quoteList[16] = "HDR 2009: The effects of skills flows are less detrimental for origin communities than is often assumed.";
quoteList[17] = "HDR 2009: The ideas, practices, identities and social capital that flow back to families and communities at origin are known as social remittances.";
quoteList[18] = "HDR 2009: Evidence that emigrants have spurred the improvement of political institutions in their home countries is accumulating.";
quoteList[19] = "HDR 2009: Migrants can bring broader economic benefits, including higher rates of innovation.";
quoteList[20] = "HDR 2009: Migrants can facilitate higher labour force participation among locally born females.";
quoteList[21] = "HDR 2009: Legal and institutional factors&mdash;both their design and their enforcement&mdash;matter.";
quoteList[22] = "HDR 2009: People across the political spectrum often share concerns about the implications of migration for the welfare state.";
quoteList[23] = "HDR 2009: A migrant whose child attends state school may also provide childcare services that facilitate the entry of a high&ndash;skilled woman into the labour force&mdash;and both pay taxes.";
quoteList[24] = "HDR 2009: Whether positive or negative, the net fiscal impacts of immigration are not large.";
quoteList[25] = "HDR 2009: Open dialogue is critical if progress is to be made in the public debate about migration.";
quoteList[26] = "HDR 2009: Where individuals with irregular status are identified, enforcement procedures should follow the rule of law and basic rights should be respected.";
quoteList[27] = "HDR 2009: The prime responsibility for ensuring basic rights while abroad lies with host governments. Employers, unions, NGOs and migrant associations also have a role.";
quoteList[28] = "HDR 2009: Rationalizing &lsquo;paper walls&rsquo; in countries of origin is an important part of reducing the barriers to legal migration.";
quoteList[29] = "HDR 2009: Inclusion and integration are critical from a human development perspective.";
quoteList[30] = "HDR 2009: It is critical to ensure fair treatment of migrants during recessions.";
quoteList[31] = "HDR 2009: Inclusive and accountable local government can play a central role not only in service provision but also in averting and alleviating social tensions.";
quoteList[32] = "HDR 2009: Migration can be a vital strategy for households and families seeking to diversify and improve their livelihoods.";
quoteList[33] = "HDR 2009: Equitable treatment of migrants not only accords with basic notions of fairness but can also bring instrumental benefits for destination communities.";
quoteList[34] = "HDR 2009: Mobility has the potential to enhance human development&mdash;among movers, stayers and the majority of those in destination societies.";

	
	
	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (quoteList.length));

	if (random_number == quoteList.length){random_number = 0}
	
	
	//set quote
	var quote = quoteList[random_number];