jQuery.extend({
	historyCurrentHash: undefined,
	historyCallback: undefined,
	historyIframeSrc: undefined,
	historyNeedIframe: jQuery.browser.msie && (jQuery.browser.version < 8 || document.documentMode < 8),

	historyInit: function(callback, src){
		jQuery.historyCallback = callback;
		if (src) jQuery.historyIframeSrc = src;
		var current_hash = location.hash.replace(/\?.*$/, '');

		jQuery.historyCurrentHash = current_hash;
		if (jQuery.historyNeedIframe) {
			if (jQuery.historyCurrentHash == '') {
				jQuery.historyCurrentHash = '#';
			}
			jQuery("body").prepend('<iframe id="jQuery_history" style="display: none;"'+
				' src="javascript:false;"></iframe>'
			);
			var ihistory = jQuery("#jQuery_history")[0];
			var iframe = ihistory.contentWindow.document;
			iframe.open();
			iframe.close();
			iframe.location.hash = current_hash;
		}
		else if (jQuery.browser.safari) {
			jQuery.historyBackStack = [];
			jQuery.historyBackStack.length = history.length;
			jQuery.historyForwardStack = [];
			jQuery.lastHistoryLength = history.length;

			jQuery.isFirst = true;
		}
		if(current_hash)
			jQuery.historyCallback(current_hash.replace(/^#/, ''));
		setInterval(jQuery.historyCheck, 100);
	},

	historyAddHistory: function(hash) {
		jQuery.historyBackStack.push(hash);

		jQuery.historyForwardStack.length = 0;
		this.isFirst = true;
	},

	historyCheck: function(){
		if (jQuery.historyNeedIframe) {
			var ihistory = jQuery("#jQuery_history")[0];
			var iframe = ihistory.contentDocument || ihistory.contentWindow.document;
			var current_hash = iframe.location.hash.replace(/\?.*$/, '');
			if(current_hash != jQuery.historyCurrentHash) {

				location.hash = current_hash;
				jQuery.historyCurrentHash = current_hash;
				jQuery.historyCallback(current_hash.replace(/^#/, ''));

			}
		} else if (jQuery.browser.safari) {
			if(jQuery.lastHistoryLength == history.length && jQuery.historyBackStack.length > jQuery.lastHistoryLength) {
				jQuery.historyBackStack.shift();
			}
			if (!jQuery.dontCheck) {
				var historyDelta = history.length - jQuery.historyBackStack.length;
				jQuery.lastHistoryLength = history.length;

				if (historyDelta) {
					jQuery.isFirst = false;
					if (historyDelta < 0) {
						for (var i = 0; i < Math.abs(historyDelta); i++) jQuery.historyForwardStack.unshift(jQuery.historyBackStack.pop());
					} else {
						for (var i = 0; i < historyDelta; i++) jQuery.historyBackStack.push(jQuery.historyForwardStack.shift());
					}
					var cachedHash = jQuery.historyBackStack[jQuery.historyBackStack.length - 1];
					if (cachedHash != undefined) {
						jQuery.historyCurrentHash = location.hash.replace(/\?.*$/, '');
						jQuery.historyCallback(cachedHash);
					}
				} else if (jQuery.historyBackStack[jQuery.historyBackStack.length - 1] == undefined && !jQuery.isFirst) {
					if (location.hash) {
						var current_hash = location.hash;
						jQuery.historyCallback(location.hash.replace(/^#/, ''));
					} else {
						var current_hash = '';
						jQuery.historyCallback('');
					}
					jQuery.isFirst = true;
				}
			}
		} else {
			var current_hash = location.hash.replace(/\?.*$/, '');
			if(current_hash != jQuery.historyCurrentHash) {
				jQuery.historyCurrentHash = current_hash;
				jQuery.historyCallback(current_hash.replace(/^#/, ''));
			}
		}
	},
	historyLoad: function(hash){
		var newhash;
		hash = decodeURIComponent(hash.replace(/\?.*$/, ''));

		if (jQuery.browser.safari) {
			newhash = hash;
		}
		else {
			newhash = '#' + hash;
			location.hash = newhash;
		}
		jQuery.historyCurrentHash = newhash;

		if (jQuery.historyNeedIframe) {
			var ihistory = jQuery("#jQuery_history")[0];
			var iframe = ihistory.contentWindow.document;
			iframe.open();
			iframe.close();
			iframe.location.hash = newhash;
			jQuery.lastHistoryLength = history.length;
			jQuery.historyCallback(hash);
		}
		else if (jQuery.browser.safari) {
			jQuery.dontCheck = true;
			this.historyAddHistory(hash);
			var fn = function() {jQuery.dontCheck = false;};
			window.setTimeout(fn, 200);
			jQuery.historyCallback(hash);
			location.hash = newhash;
		}
		else {
		  jQuery.historyCallback(hash);
		}
	}
});
function finder()
{
	$.ajax({
		type: "POST",
		url: '/find/_jax',
		dataType : "html",
		data:'findmy='+$("#findmy").val(),
		success: function(xml) {
			$('#text-content').html(xml);
			cliajax();
		}
})}
function cliajax()
		{
			$('.ina').unbind();
			$("#show-comments").unbind();
			$("#show-comments").click(function(){
					$("#comments").slideToggle();
				});
			$('.ina').bind('click',function()
			{
			var hash = this.href;
			hash = hash.replace(/^.*#/, '');
			hash = hash.replace('http://streeticon.ru', '');
//			$('#mailserv').attr('class','mail');
//			$('#mapserv').attr('class','map');
//			$('#homeserv').attr('class','home');
			//if(this.href.search(/galery/)>1){inddd();}
			$.historyLoad(hash);
			$('.ina').unbind();
				return false

			});
		}
function pageload(hash) {
		// hash doesn't contain the first # character.
		if(hash) {
			// restore ajax loaded state
			$('#text-content').load(hash+'_jax',function(){cliajax();
			$('.imgs').unbind();
			$("a[rel=photo]").unbind();
			$(".imgs").fancybox({
				'titleShow'				: false,
				'showCloseButton'		: false,
				'transitionIn'			: 'none',
				'transitionOut'		: 'none',
				'autoDimensions'		: true,
				'margin'					: 0,
				'padding'				: 0,
				'overlayOpacity'		: 0.8
			});
			$("a[rel=photo]").fancybox({
				'titleShow'				: false,
				'showCloseButton'		: false,
				'transitionIn'			: 'none',
				'transitionOut'		: 'none',
				'autoDimensions'		: true,
				'margin'					: 0,
				'padding'				: 0,
				'overlayOpacity'		: 0.8
			});
			});
//			jQuery("#load").load(hash + ".html");
		} else {
			// start page
			$('#text-content').load('/index/'+'_jax',function(){cliajax();
			$('.imgs').unbind();
			$(".imgs").fancybox({
				'titleShow'				: false,
				'showCloseButton'		: false,
				'transitionIn'			: 'none',
				'transitionOut'		: 'none',
				'autoDimensions'		: true,
				'margin'					: 0,
				'padding'				: 0,
				'overlayOpacity'		: 0.8
			});
			$("a[rel=photo]").unbind();
			$("a[rel=photo]").fancybox({
				'titleShow'				: false,
				'showCloseButton'		: false,
				'transitionIn'			: 'none',
				'transitionOut'		: 'none',
				'autoDimensions'		: true,
				'margin'					: 0,
				'padding'				: 0,
				'overlayOpacity'		: 0.8
			});});
			//jQuery("#load").empty();
		}
	}
$(document).ready(function()
		{
			jQuery.historyInit(pageload);
			cliajax();
			$("a[rel=photo]").fancybox({
				'titleShow'				: false,
				'showCloseButton'		: false,
				'transitionIn'			: 'none',
				'transitionOut'		: 'none',
				'autoDimensions'		: true,
				'margin'					: 0,
				'padding'				: 0,
				'overlayOpacity'		: 0.8
			});

			$(".imgs").fancybox({
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

		});
