
$(document).ready(function() {
	initThickbox(); 
	
	$('a.next').click(function() {
	var target = $(this).attr("href");
	$("#portfolio-inner-wrapper").scrollTo(  'div' + target + '', 800 );
	return false;
	});
	
	$('a.prev').click(function() {
	var target = $(this).attr("href");
	$("#portfolio-inner-wrapper").scrollTo(  'div' + target + '', 800 );
	return false;
	});
});

function initThickbox()
{ 
	//$('#imagebox a').lightBox();
	tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
	imgLoader = new Image();// preload image
	imgLoader.src = tb_pathToImage;
}
