		var loadScript = function(url, callback){

		  /* JavaScript that will load the jQuery library on Google's CDN.
		     We recommend this code: http://snipplr.com/view/18756/loadscript/.
		     Once the jQuery library is loaded, the callback function will be executed. */

		};

		var myAppJavaScript = function($){ 
		  /* Your app's JavaScript here.
		     $ in this scope references the jQuery object we'll use.
		     Don't use 'jQuery', or 'jQuery191', here. Use the dollar sign
		     that was passed as argument.*/
		      $('body').append("<script data-cfasync='false'>function loadAsisteClick(callback) { var AsisteClick = document.createElement('script'); AsisteClick.onload = callback; AsisteClick.async = true; AsisteClick.src = 'https://app.asisteclick.com/V2/widget.php?id=4787690-3803&async=1&floating=DL&deptid=0&layer=1&'; var s0 = document.getElementsByTagName('script')[0]; s0.parentNode.insertBefore(AsisteClick, s0); } loadAsisteClick(function() {} ); </script>");
		};

		// For jQuery version 1.7
		var target = [1, 7, 0];

		var current = typeof jQuery === 'undefined' ? [0,0,0] : $.fn.jquery.split('.').map(function(item) {
		    return parseInt(item);
		});

		if (current[0] < target[0] || (current[0] == target[0] && current[1] < target[1])) {
		  loadScript('//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js', function(){
		    var jQuery1101 = jQuery.noConflict(true);
		    myAppJavaScript(jQuery1101);
		  });
		} else {
		  myAppJavaScript(jQuery);
		}