// JavaScript Document
// Randomiser with refresh link
// v.1.1
//
// sagba
var arrItems = new Array('<a href=\"engineering/\"><img src=\"images/slide-01.jpg\" alt=\"Engineering: addressing the 2020 challenges\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"engineering/\">Engineering: addressing the 2020 challenges</a></strong></p></div>',
						 <!--'<a href=\"climatechange/\"><img src=\"images/slide-02.jpg\" alt=\"Climate Change: confronting the four &ldquo;grand challenges&rdquo;\" /></a><div class=\"pad05\"></a><p>Opportunities include:<br /><strong><a href=\"climatechange/\">Climate Change: confronting the four &ldquo;grand challenges&rdquo;</a></strong></p></div>',-->
						 '<a href=\"catalysis/\"><img src=\"images/slide-03.jpg\" alt=\"Cardiff Catalysis Institute\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"catalysis/\">Cardiff Catalysis Institute</a></strong></p></div>',
						 '<a href=\"multiculturalism/\"><img src=\"images/slide-04.jpg\" alt=\"(Re)-Constructing Multiculturalism\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"multiculturalism/\">(Re)-Constructing Multiculturalism</a></strong></p></div>',
						 '<a href=\"drugdiscovery/\"><img src=\"images/slide-05.jpg\" alt=\"Drug Discovery: from best science to commercial development\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"drugdiscovery/\">Drug Discovery: from best science to commercial development</a></strong></p></div>',
						 '<a href=\"bioimaging/\"><img src=\"images/slide-06.jpg\" alt=\"Bioimaging\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"bioimaging/\">Bioimaging</a></strong></p></div>',
						<!-- '<a href=\"wgc-wiserd/\"><img src=\"images/slide-07.jpg\" alt=\"Wales Governance Centre (WGC) and Wales Institute of Social and Economic Research, Data and Methods (WISERD)\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"wgc-wiserd/\">Wales Governance Centre (WGC) and Wales Institute of Social and Economic Research, Data and Methods (WISERD)</a></strong></p></div>',-->
						<!-- '<a href=\"sustainablecity/\"><img src=\"images/slide-08.jpg\" alt=\"Food and Sustainable City-Regions\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"sustainablecity/\">Food and Sustainable City-Regions</a></strong></p></div>',-->
						 '<a href=\"neuroimaging/\"><img src=\"images/slide-09.jpg\" alt=\"Cardiff Research into Advanced Neuroimaging Methods (CRANIUM)\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"neuroimaging/\">Cardiff Research into Advanced Neuroimaging Methods (CRANIUM)</a></strong></p></div>',
						 '<a href=\"arthritis/\"><img src=\"images/slide-10.jpg\" alt=\"Centre of Excellence in Arthritis Research\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"arthritis/\">Centre of Excellence in Arthritis Research</a></strong></p></div>',
						 '<a href=\"immunology/\"><img src\="images/slide-11.jpg\" alt=\"Immunology and Infection: Turning laboratory research into clinical practice\" /></a><div class=\"pad05\"><p>Opportunities include:<br /><strong><a href=\"immunology/\">Immunology and Infection: Turning laboratory research into clinical practice</a></strong></p></div>');
// Randomiser
function rand() {
	var i = Math.floor(Math.random() * (arrItems.length));
		$('#random').html(arrItems[i]);
}
$(document).ready(function(){
	rand();
	// On click of 'Get Another...' link generate fact
	$('#getAnother').click(rand);
});

