function bookPlay ( id ){

	$.get("/libroajax.php?id=" + id, function(data){
		d = eval("("+data+")");
		d.indexcontent = "<h2>Altri volantini disponibili</h2>" + d.indexcontent;
		$("#flipbook_sidebar").html(d.indexcontent);
		$(".flipbook").html(d.bookcontent);
		jQuery('.flipbook').css( { "height": d.height } ).flipbook({
			totalWidth:751,
			totalHeight:d.height,
			coverPage:"on",
			coverPage_back:"on",
			shadowWidth:20,
			settings_flip_sound: 'off'
		})
		$("#backgroundBG").show();
		$("#btnFacebook").unbind("click").bind("click", function( ){
		      FB.ui({
				          method: 'send',
							 name: 'Nuovo volantino sul sito Coop Nordest',
							 link:d.link 
						});
		} );
		$(document).keypress(function(e) { 
	   	if (e.keyCode == 27) { 
				$('#backgroundBG').hide(); 
				$(document).unbind("keypress");
			}
		});
		$( '#btnDownloadPdf' ).click( function(){
			window.open( '/allegaticlasse/' + id + '.pdf' );
			return false;
		});
	})
	return false;
}


;


;
;
;


;
;


;
;

