window.onload = function() {
	// =================================================
	// Get Flickr photos
	// =================================================
	var url = 'http://www.dykast.us/wp-content/themes/dykast/ajax/flickr_parse.php';
	
	$.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/wp-content/themes/dykast/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
};
