$(document).ready(function() {
	if ($('#scripting').length != 0) {
		if ($('#scripting').text != '') {
			var scripting = $('#scripting').text();
			var exploded = scripting.split(' ');
			if(exploded[0] = 'crop') {
				if ($('.textbody').length != 0) {
					$('.textbody br:first').after('<img class="articleimg" src="http://www.pulseoftheworld.com/image/2/'+exploded[1]+'/'+exploded[2]+'/1/upload/'+exploded[3]+'" />');
				}
			} 
		}
	}
});