


function show_product(node) {
	
	var product = node.id;
	
	new Ajax(url+'pages/'+lang+'/product/'+product+'/index.php', {
		
		method: 'get',
		evalScripts: true,
		update: $('product')

	}).request();

	// div height wijzigen naar echt 100% ipv css 100%
	var height = parseInt($('header').clientHeight)+parseInt($('main').clientHeight)+parseInt($('footer').clientHeight);
	
	$('productbg').style.height=height+'px';
	$('productbg').style.display='block';
	
	$('product').style.display='block';

	

}

function init_product() {
	
}

function close_window() {
	$('productbg').style.display='none';
	
	$('product').style.display='none';
}

function trigger_slimbox(src) {

	
	var explode = src.split('/');
	var pic = explode[explode.length-1].split('.');
	$('image'+pic[0]).onclick();	
}