$(document).ready(function(){
	$('a[rel*="lightbox"]').lightBox();
	//$('.zoom a').lightBox();

	// print window;
	$('.print a').click( function() {
		window.print();
		return false;
	});
	
	$('.send a').sendFriend();

	//$('.friend a').frypeSay();
	
	$('.friend a').click(function(){
		var id = $('#docId').attr('value');
		$.ajax({
			type: "GET",
			url: "/ajax.php?type=recFr&doc=" + id
		});
		window.open(this.href, '', 'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400');
		return false;
	});
	
	$('.intro .close a').click(function(){
		$.ajax({
			type: "GET",
			url: "/ajax.php?type=closeDscr"
		});
		$('.intro').remove();
		return false;
	});

});