
//=============================================================================
// Add links to homepage article images
function articleImageLinks() {
	jQuery(window).load(function() {
		jQuery("body.home #content article").each( function() {
			linkWrapper = '<a href="' + jQuery(this).find(".entry-header h1 a").attr("href") + '"></a>';
			jQuery(this).find(".entry-content img").wrap(linkWrapper);
		});
	});
}

//=============================================================================
// loads up the various functions we are going to use

jQuery(document).ready(function(){
	jQuery("body").addClass("has_js");
	articleImageLinks();
});
