$(document).ready(function(){
	//if(jQuery.isFunction(jQuery.imgPreview)) {alert('yes');} else alert('no');
	
	/**
	* Preview
	**/
	try{
		$('.main table td a img').parent().imgPreview({
			srcAttr: 'rel',
		    imgCSS: { width: 200 }
		});
	} catch(err){
		//alert(err);
	}
	
	/**
	* Lightbox
	**/
	$('.enlarge').click(function(){
		$('.vergroten').trigger('click');
	});
	try{
		$('.vergroten').lightBox();
		
	} catch(err){
		alert(err);
	}	
	
	

});
