function setPortFolioImage(img){
	document.getElementById('bigimage').src = '/files/images/1px.gif';	
	document.getElementById('bigimage').src = img;  
	document.getElementById('bigimage').height = 300;  
    document.getElementById('bigimageHref').href = img;
}

function changeBG(target, color){
	document.getElementById(target).style.backgroundColor = color;
}    

window.addEvent('domready',init);

function init () {    
	
	var bigImagesList = [] 
	var slimBoxImages = []
	var imageURL;
	$$('#portfolio_thumblist a').each(function(n){     
		
		imageURL = 'http://'+window.location.href.split('/')[2] + n.href.split('\'')[1];
		slimBoxImages.push([imageURL,'']);
		bigImagesList.push(imageURL);  
	})
	$('bigimageHref').addEvent('click',function(event){    		
		Slimbox.open(slimBoxImages,bigImagesList.indexOf(this.href),{counterText: 'Afbeelding {x} van {y}'}); 
		event.stop();
	})
}  

