function random_img() {
		var random_image = new Array();
		random_image[1] = "http://students.sfu.ca/health/images/familycounselling.jpg";
		random_image[2] = "http://students.sfu.ca/health/images/nutritionalcounselling.jpg";
		random_image[3] = "http://students.sfu.ca/health/images/picture3.gif";
		random_image[4] = "http://students.sfu.ca/health/images/picture4.gif";
		random_image[5] = "http://students.sfu.ca/health/images/HCSMainPage_DeStressAdvert.jpg";
		random_image[6] = "http://students.sfu.ca/health/images/WW_Advert_HCS Page.jpg";
		random_image[7] = "http://students.sfu.ca/health/images/CC_Advert_HCS Page.jpg";
		random_image[8] = "http://students.sfu.ca/health/images/banner_socialmedia.jpg";
		random_image[9] = "http://students.sfu.ca/health/images/sunrun2010.jpg";
	
		captions = ['Are you experiencing challenges in your relationship with your partner or a family member? HCS now offers <A HREF="http://students.sfu.ca/health/counselling/Family%20and%20Couples%20Counselling.html"> free couples and family counselling</A>.','Get your nutrition questions answered, check out recipes and cooking videos and more with our new nutrition blog, <a href="http://blogs.sfu.ca/services/thedish/">The Dish</a>.','','','De-stress and relax with <a href="http://students.sfu.ca/wellness/">mindfulness podcasts, and yoga, pilates, and relaxation videos</a>.','Do you find it difficult to achieve balance in your life? Click <a href="http://students.sfu.ca/health/healthpromotion/wheel.html">here </a> to discover how you can lead a more balanced life.','Ask your sexual health questions anonymously online on our <a href="http://students.sfu.ca/wellness">sexual health blog</a>.','',''];
		var num = Math.floor(Math.random()*random_image.length);
		if (num==0) num=1;
		 document.write('<img src="'+random_image[num]+'" border=0>'+'<br><div class="caption">'+captions[num-1]+'</div>');
		}
		random_img();

