$(document).ready(function(){
	document.createElement("nav");  
    if($('#factsEditorialTable a').length > 0){
        $('#factsEditorialTable a').lightBox({
            fixedNavigation:true
        });
    }
	/*
	if($('#rotatedRight').length > 0 ){
		$('#rotatedRight').rotate({
			angle: 10,
			direction: false
		});
	}
	
	if($('#rotatedLeft').length > 0 ){
		$('#rotatedLeft').rotate({
			angle: 10
		});
	}
	*/
	if($('#printButton').length > 0){
		$('#printButton').click(function() {
			printPage();
		});
	}
})

function printPage(){
	window.print();
	return false;
}
