﻿// DISQUS-specific code
var disqus_shortname = 'zougla';
var disqus_developer = false;

$(document).ready(function () {

	var location = $(window).attr('location').toString();

	//If we're working on localhost, subst the image.ashx
	if ((location.match("localhost") != null) ||
			(location.match("127.0.0.1") != null) ||
			(location.match("zougla.techaholics.gr") != null)) // ||
	//(location.match("staging.eveto.gr") != null))
	{
		$('img').each(function (index) {
			var src = $(this).attr('src').toLowerCase();

			if (src.indexOf('image.ashx') >= 0 || src.indexOf('uploads/') >= 0)
				$(this).attr('src', 'http://www.zougla.gr/' + $(this).attr('src'));
		});

		disqus_developer = true;
	}
});
