$(document).ready(function()
{
    $('a[@rel*=lightbox]').lightBox();
	
	$('.guestbookinput').click(function(){
		alert('Uw bericht is toegevoegd. Berichten moeten eerst gemodereerd worden voor ze op de site getoond worden.');
	});
	
    var profiles =
    {
        ladypopup:
        {
            width:700,
			height:500,
            center:1,
            createnew:1,
            resizable:0,
            toolbar:0,
            scrollbars:0,
            status:0
        }
    };
    
    $(function()
    {
        $(".popup").popupwindow(profiles);
    });
});    