$(document).ready(function() {
	// Grab / Set the cookie
	var onetwo_cookie = cookie('onetwo');
	
	//Define the array of ads
	var onetwo_array = new Array();
	
		onetwo_array[0] = new Array();
		onetwo_array[0][0] = '/links/hostgator/';
		onetwo_array[0][1] = '<img src="http://www.tqlkg.com/image-3681075-10408490" alt="" />';
		
		onetwo_array[1] = new Array();
		onetwo_array[1][0] = '/links/hostgator/';
		onetwo_array[1][1] = '<img src="http://www.tqlkg.com/image-3681075-10408490" alt="" />';
	
	
	// Pick a random ad thats not the current one
	var ot = pickAd(onetwo_cookie, onetwo_array);
	ot = ot * 1;

	//Display
	onetwo_html = '<a target="_blank" href="' + onetwo_array[ot][0] + '">' + onetwo_array[ot][1] + '</a>';
	$('.onetwo').html(onetwo_html);

//	document.write(onetwo_html);
	//Set cookie value
	Set_Cookie( 'onetwo', ot, 30, '/', '', '' );
});
		
