var Cinnamon = {
	smell: function() {
		var trackURL = 'http://stats.marios.tziortzis.com/cse-track.php?site_id=9';
		
		var trackParams = Array();	
		trackURL = trackURL + '&' + encodeURIComponent('ip_address') +'='+ encodeURIComponent('38.107.191.116'); 
		trackURL = trackURL + '&' + encodeURIComponent('request_url') +'='+ encodeURIComponent(document.location.href); 
		trackURL = trackURL + '&' + encodeURIComponent('request_title') +'='+ encodeURIComponent(document.title); 
		trackURL = trackURL + '&' + encodeURIComponent('referrer') +'='+ encodeURIComponent(document.referrer); 
		this.makeRequest(trackURL, false);
	},
	
	makeRequest: function(url, debug) {	
		if ( debug ) {

						////location.href = url;
		} else {
			var img = new Image(1, 1);
			img.src = url;
			img.onload = function() { return; };
		}
	},
	
	};
function onDOMReadySmell() {
	this.n = typeof this.n == 'undefined' ? 0 : this.n + 1;
	if ( typeof document.getElementsByTagName != 'undefined' 
		&& ( document.getElementsByTagName('body')[0] != null || document.body != null ) ) {	
			Cinnamon.smell();
	} else if( this.n < 60 ) {
		setTimeout('onDOMReadySmell()', 250);
	}
}
onDOMReadySmell();
