(function() {
	function getScript(url,success){
		var script=document.createElement('script');
		var head=document.getElementsByTagName('head')[0], done=false;
		
		script.src=url;
		script.onload=script.onreadystatechange = function(){
			if ( !done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete') ) {
				done=true;
				success();
				script.onload = script.onreadystatechange = null;
				head.removeChild(script);
			}
		};
		head.appendChild(script);
	}
	getScript('http://nugrove.com/wp-content/themes/nugrove/assets/js/jquery-1.6.2.min.js',function(){
		$(document).ready(function () {
			
		});

		$(window).load(function() {
			
		});

		$(window).resize(function() {
			
		});
	});
})();


