$(function() {
	var page = location.hash;
	var div = $('div.text');
	$('a.menu:first').css('border-top', '2px solid #FFF');
	$('img.view').css('display', 'none');
	$('.thumbs1').cycle('fade').css('display', 'block');
	$('.thumbs2').cycle('fade').css('display', 'block');
	$('.thumbs3').cycle('fade').css('display', 'block');
	$('.thumbs4').cycle('fade').css('display', 'block');
	$('#gallery a').lightBox();
	var pager = function pager() {
		page = page.replace('#', '');
		if(page.indexOf(',') >= 0)
			page = page.replace(',', '.php?method=plain&');
		else
			page = page+'.php?method=plain';
		page = page.replace(',', '&').replace('-', '=');
		getString = page;

		div.load(getString, function(){
			links = $('a');
			links.each(function() {
				if($(this).attr('rel') != 'outer' && $(this).attr('class') != 'menu flir-replaced' && $(this).attr('href').indexOf('mailto:') < 0 && $(this).attr('href').indexOf('.jpg') < 0)
				{
					link = $(this).attr('href');
					link = '#'+link.replace('.php', '').replace('?method=plain', '').replace('?', ',').replace('=', '-').replace('&', ',');
					$(this).attr('href', link);
				}
			});
		});
	};

	pager();
	$('a.menu').click(function () {
		page = $(this).attr('href');
		pager();
	});
});

