/*

*/

jQuery(document).ready(function(){

	$('.sponsorTable tr td:has(strong)').each(function(){
		var amountString = $(this).children('strong').text().replace('$','').replace(',','').replace('600-1000','?').replace('Anything Higher','?');
		if (amountString === '?') {
			$(this).append('<br /><a href="javascript:$(\'.paypalDonate:first\').submit();" class="donate_button">donate</a>');
		} else {
			var amount = parseInt(amountString,10);
			// append special amount link
			var fulldescription = $(this).siblings('td').text();
			var name = 'Reboot 09/10 - Joe and Leah' + ' : ' + fulldescription;
			var donate_link = "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=leah@leahpeah.com&item_name="+encodeURI(name)+"&item_number=&amount="+amount+".00&no_shipping=0&no_note=1&currency_code=USD&bn=PP%2dBuyNowBF&charset=UTF%2d8";
			$(this).append('<br /><a href="'+donate_link+'" class="donate_button">donate</a>');
		}
	});
	
	$('#linkcat-2 a').each(function(){
		var href = $(this).attr('href') + '?KeepThis=true&TB_iframe=true&height=400&width=600';
		$(this).addClass('thickbox').attr('href', href);
	});
	// 
	

	
});
