$(document).ready(function(){
	
	var thumb_size = 100;
	var thumb_link;
	var image_path;
	var img_tag;
	
	$('.hovedvisning ul li img').each(function() {
		image_path = $(this).attr('src');
		img_tag = '<img src="/img'+image_path+';w;'+thumb_size+';h;'+thumb_size+'" />';
		thumb_link = '<a href="'+image_path+'">'+img_tag+'</a>';
		//alert(thumb_link);
		$(this).parent().html(thumb_link);
	});
	
	$('.hovedvisning ul li a').lightBox({
		imageLoading:			'/bildegalleri/v2.2/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			'/gfx/lightbox-forrige.png',			// (string) Path and the name of the prev button image
		imageBtnNext:			'/gfx/lightbox-neste.png',			// (string) Path and the name of the next button image
		imageBtnClose:			'/gfx/lightbox-lukk.png',		// (string) Path and the name of the close btn
		//imageBtnPrev:			'/bildegalleri/v2.2/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		//imageBtnNext:			'/bildegalleri/v2.2/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		//imageBtnClose:			'/bildegalleri/v2.2/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'/bildegalleri/v2.2/images/lightbox-blank.gif'
										});
	
	$('#scroller').jScrollPane({scrollbarWidth:10,scrollbarMargin:10});
	
	
	
	
});