/*******************************************************************************
 * "www.b-ball-day.com" - Version 0.1 License: http://www.b-ball-day.com Author:
 * Kevin Azangue Copyright (c)2010 kevin.azangue@b-ball-day.com Last update:
 * 2010-04-25
 ******************************************************************************/
// **** Parameters ****
// debug
var debug_followus = 0;
// Images
var bbd_img = new Array('webContent/images/followUs/fbk_addMeAsFriend.gif',
		'webContent/images/followUs/fbk_friendMe.gif',
		'webContent/images/followUs/fbk_joinMyPage.gif');
// Urls
var bbd_url = new Array(
		'http://www.facebook.com/people/Baskamerun-B-Ball-Day/100000721796715',
		'http://www.facebook.com/people/Baskamerun-B-Ball-Day/100000721796715',
		'http://www.facebook.com/people/Baskamerun-B-Ball-Day/100000721796715');
/*******************************************************************************
 * function baum
 ******************************************************************************/
function followus() {
	var i;
	var xhtml;
	i = Math.floor(bbd_img.length * Math.random() + 1);
	if (debug_followus == 1) {
		alert(bbd_img.length + ' ' + i);
	}
	xhtml = "<a href='" + bbd_url[i - 1] + "' target='_blank'><img src='" + bbd_img[i - 1]
			+ "'></a>";
	document.writeln(xhtml);

}
