$(document).ready(function() {
	// Grab / Set the cookie
	var three_cookie = cookie('three');
	
	//Define the array of ads
	var three_array = new Array();
	
		three_array[0] = new Array();
		three_array[0][0] = '/links/revitol/';
		three_array[0][1] = '<img src="http://www.wfmtk.com/impression.track?CID=106518&AFID=107285&ADID=237717&SID=" alt="" />';
		
		three_array[1] = new Array();
		three_array[1][0] = '/links/video-professor/';
		three_array[1][1] = '<img src="http://www.wfmtk.com/impression.track?CID=106532&AFID=107285&ADID=237822&SID=" alt="" />';
	
	/*
		three_array[2] = new Array();
		three_array[2][0] = '/links/work-from-home/';
		three_array[2][1] = '<img src="/ad-includes/images/work_from_home.jpg" alt="" />';
	*/
	
	// Pick a random ad thats not the current one
	var tp = pickAd(three_cookie, three_array);
	tp = tp * 1;

	//Display
	three_html = '<a target="_blank" href="' + three_array[tp][0] + '">' + three_array[tp][1] + '</a>';
	
	$('.tier1side').find('.excerpt').html(three_html);
	
	//Set cookie value
	Set_Cookie( 'three', tp, 30, '/', '', '' );
});