$(document).ready(function(){
	moveRulers();
	makeLinks();
	$(window).scroll(function(){
		moveRulers();
	});
});

function showNext(id, tag) {
	$.get("/ajax/portfolio.php?id="+id, function(data){
		var res = data.split('|||');
		document.title = res[0];
		$('div#contentwrapper div.in div.inn').html(res[2]);
		moveRulers();
		makeLinks();
	});
}
function showPrev(id, tag) {
	$.get("/ajax/portfolio.php?id="+id, function(data){
		var res = data.split('|||');
		document.title = res[0];
		$('div#contentwrapper div.in div.inn').html(res[2]);
		moveRulers();
		makeLinks();
	});
}

function moveRulers() {
	var div= $('#showNext');
	$('div#showNext, div#showPrev').css("top", ($(window).height() - div.height())/2 + $(window).scrollTop() - 100 + 'px');	
}

function makeLinks() {
	$('span.repl').each(function(i,SP){
		if ( $(SP).attr('rel') ) {
			$(SP).parent().append("<a href=\""+$(SP).attr('rel')+"\">"+$(SP).text()+"</a>");
		}
		else {
			$(SP).parent().append("<a href=\""+$(SP).html()+"\">"+$(SP).text()+"</a>");
		}
		$(SP).remove();
	});
}
