$(document).ready(function(){
			$("a[rel^='lightbox']").prettyPhoto( { theme: 'dark_rounded', } );
		});


function boquets() {
	$('#boquets .del').click(delBoquet);
}
$(boquets);

function delBoquet() {
	if(confirm('Czy jesteś pewny?')) {
		$.post($(this).attr('href'), { answer : 'yes' }, delBoquetDone);
	}
	return false;
}
function delBoquetDone() {
	window.location = window.location;
}
