// JQueryTools - scroll the projects
$.easing.easeOutQuad = function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
$(function() {
	$("#panes").scrollable({ circular: false, easing: 'easeOutQuad', speed: 300 }).navigator({
		navi: ".navi",
		naviItem: 'a',
		activeClass: 'current',
		history: true
	});
});


$(function() {
	$(".close").html("<a href='work.php' title='Close the project'><img src='images/img/close.png' alt='Close the project' title='Close the project' /><br />close</a>")
});

