window.onload = function() {
	
	// =================================================
	// Get Flickr photos
	// =================================================
	
	var url = 'http://www.dykast.us/ajax/flickr_parse.php?source=personal';
	if (($('#scraplog').length) || ($('#freebies').length)) {
		var url = 'http://www.dykast.us/ajax/flickr_parse.php?source=group';
	}
	
	$.ajax({
		type: 'GET',
		url: url,
		dataType: 'html',
		success: function(html) {
			$('#flickrBadgeWrapper').html(html);
		},
		error: function() {
			var errorMsg = '<p class="muted">What we have here is a failure to communicate. We were unable to load our photos from <a href="http://www.flickr.com/photos/jdykast/">Flickr</a>. Sorry.</p>';
			$('#flickrBadgeWrapper').html(errorMsg);
		}
	});
	
	// =================================================
	// Get Etsy items
	// =================================================
	$.ajax({
		url: 'http://www.dykast.us/ajax/etsy_parse.php',
		dataType: 'html',
		success: function(html) {
			$('#etsyBadgeWrapper').html(html);
		},
		error: function() {
			var errorMsg = '<p class="muted">What we have here is a failure to communicate. We were unable to load our data from <a href="http://everyjotandtittle.etsy.com">Etsy</a>. Sorry.</p>';
			$('#etsyBadgeWrapper').html(errorMsg);
		}
	});

//End document ready stuff
};


/* Switched to window.onload to postpone the AJAX requests
$(document).ready(function(){
	
	// =================================================
	// Get Flickr photos
	// =================================================
	
	var url = 'http://www.dykast.us/ajax/flickr_parse.php?source=personal';
	if (($('#scraplog').length) || ($('#freebies').length)) {
		var url = 'http://www.dykast.us/ajax/flickr_parse.php?source=group';
	}
	
	$.ajax({
		type: 'GET',
		url: url,
		dataType: 'html',
		success: function(html) {
			$('#flickrBadgeWrapper').html(html);
		},
		error: function() {
			var errorMsg = '<p class="muted">What we have here is a failure to communicate. We were unable to load our photos from <a href="http://www.flickr.com/photos/jdykast/">Flickr</a>. Sorry.</p>';
			$('#flickrBadgeWrapper').html(errorMsg);
		}
	});
	
	// =================================================
	// Get Etsy items
	// =================================================
	$.ajax({
		url: 'http://www.dykast.us/ajax/etsy_parse.php',
		dataType: 'html',
		success: function(html) {
			$('#etsyBadgeWrapper').html(html);
		},
		error: function() {
			var errorMsg = '<p class="muted">What we have here is a failure to communicate. We were unable to load our data from <a href="http://everyjotandtittle.etsy.com">Etsy</a>. Sorry.</p>';
			$('#etsyBadgeWrapper').html(errorMsg);
		}
	});

//End document ready stuff
});
*/