'+Message()+''; // set dims // add objects to overlay ui.ov.appendChild(ui.mi.o); ui.ov.appendChild(ui.bx); // fx // fx: random offscreen //ui.mi.o.style.left=-ui.mi.w+'px'; //ui.mi.o.style.top=Math.floor(Math.random()*(ui.vp.h+ui.mi.h*2)-ui.mi.h)+'px'; //ui.mi.o.style.transition='left 2s ease-out, top 1666ms ease-out'; // fx: in-place fade ui.mi.o.style.opacity='0.0'; ui.mi.o.style.left=ui.mi.x+'px'; ui.mi.o.style.top=ui.mi.y+'px'; ui.mi.o.style.transition='opacity 1666ms ease-out'; ui.s='start'; break; case 'start': // set resize event hook window.addEventListener("resize",EH_Resize); // initialise positions and sizes Dimensions(); // fx: offscreen - position image (and reveal - bad frame-drop generally - should use canvas?) //ui.mi.o.style.left=ui.mi.x+'px'; //ui.mi.o.style.top=ui.mi.y+'px'; ui.mi.o.style.opacity='1.0'; ui.hb=0; ui.s='msg'; break; case 'msg': // wait for fx end if(ui.hb<35) break; // reveal box ui.bx.style.opacity='0.8'; ui.bx.style.backgroundColor='#0A3161'; // hook click event for first timers if(tv==1) ui.ov.addEventListener('click', function(){ui.wt=ui.hb;}); ui.hb=0; ui.s='msgw'; break; case 'msgw': // wait for fx end if(ui.hb<20) break; // set anims for screen dim changes ui.bx.style.transition='left 666ms, top 666ms'; ui.mi.o.style.transition='left 666ms, top 666ms, height 666ms, width 666ms'; ui.hb=0; ui.s='show'; // break if max views exceeded if(ui.ab) { if (ui.vf>=MAX_DAYAB) { ui.s='stop'; document.getElementById("post").innerHTML='
'+adb[3]+''; document.body.scrollTop=0;} } else if(ui.vf>=MAX_DAILY) { ui.s='stop'; document.getElementById("post").innerHTML='
'+non[3]+''; document.body.scrollTop=0;}
break;
case 'show':
// check for overlay tampering, kill article
if(!document.getElementById(ui.ovi)) { ui.s='tamp'; break; }
var z=ui.ov.style.getPropertyValue('z-index');
var d=ui.ov.style.getPropertyValue('display');
var p=ui.ov.style.getPropertyPriority('display');
if(z!=ui.ovz || d!=ui.ovd || p!=ui.ovp) { ui.s='tamp'; break; }
// delay for message read
if(ui.hb December 25, 2024 Source: Bigstock Here’s my wish list for the incoming Trump administration to make America healthy and prosperous and great again in 2025. 1. Slash Job-Killing Regulations 2. Make the Trump Tax Cuts Permanent 3. Replace Welfare With Work 4. Use America’s Abundant Natural Resources 5. Cut Medical Costs by Demanding Health Care Price Transparency 6. Allow School Choice for All Families A child can get a better education at HALF the cost in the Catholic school system and in many charters. Trump has endorsed universal school choice for ALL children regardless of income or ethnicity or race. This is the civil rights issue of our time. 7. Implement a Pro-America Immigration Policy 8. Revive America’s Great Cities Trump wants to revitalize our cities and abandoned rural areas through deregulation, reduction in tax rates, changes in zoning policies and infrastructure investments. 9. Pull the U.S. Out of the Paris Climate Change Treaty and Other Anti-America Agreements We must end American participation in globalist treaties that hurt America most. This includes the Paris Climate Accords — a treaty with which most other nations have failed to comply, yet which places huge burdens on American companies and workers. Trump also has pledged to end global taxation — such as Treasury Secretary Janet Yellen’s global minimum tax. Do we even need a United Nations? 10. Finally, Drain the Swamp These are admittedly bold aspirations for an economic transformation toward freedom and free enterprise. But the one person who can get it done is Trump.
Please disable any filtering you have active in your browser and refresh the page.';
document.body.scrollTop=0;
ui.ov.remove();
ui.s='stop';
break;
case 'stop':
clearInterval(ui.hr);
//l('system unloaded');
break;
}
// update on screen size change?
ui.hb+=1;
// trigger init as sometimes reload doesn't fire window.onload condition
if(!ui.s && ui.hb>140) ui.s='init';
}
// resize event hook
function EH_Resize(){
if(ui.s=='show' || ui.s=='stop') Dimensions();
}
// Dims (on screen-change)
function Dimensions(){
ui.vp={w:ui.ov.clientWidth,h:ui.ov.clientHeight};
// if image size exceeds viewport, adjust
var sr=Math.min(ui.vp.w*0.67/ui.oi.w,ui.vp.h*0.67/ui.oi.h);
if(sr<1.0) {
ui.mi.w=Math.floor(ui.oi.w*sr);
ui.mi.h=Math.floor(ui.oi.h*sr);
} else {
ui.mi.w=ui.oi.w;
ui.mi.h=ui.oi.h;
}
ui.mi.o.style.width=ui.mi.w+'px';
ui.mi.o.style.height=ui.mi.h+'px';
// font-size
var md=Math.min(ui.vp.w,ui.vp.h);
var fs=1.5; if(md<480) fs=1.25*md/480;
const a=ui.bx.getElementsByTagName('p');
for(let x of a) x.style.fontSize=fs+'rem';
// layout logic
sr=Math.sqrt(ui.vp.w/ui.vp.h);
var w=Math.min(Math.floor(ui.vp.w*2/3),Math.floor(ui.vp.w*sr/2));
if(ui.vp.w>ui.vp.h){ // landscape
// image - central
ui.mi.x=(ui.vp.w-ui.mi.w)/(6*sr);
ui.mi.y=(ui.vp.h-ui.mi.h)/2;
// adjust box width to provide min visible area
var w=Math.floor(Math.min(ui.vp.w*3/5,ui.vp.w*sr/2));
ui.bx.style.width=w+'px';
ui.bx.style.left=(ui.vp.w-w)*4/5+'px';
// box height
// cannot measure eventual y with size transition
var y=ui.bx.clientHeight;
l('dims:landscape box height:'+y);
ui.bx.style.top=(ui.vp.h-y)/2+'px';
} else { // portrait
// image
ui.mi.x=(ui.vp.w-ui.mi.w)*sr/4;
ui.mi.y=(ui.vp.h-ui.mi.h)*sr/4;
// box
var w=Math.floor(ui.vp.w*2/3);
ui.bx.style.width=w+'px';
ui.bx.style.left=Math.floor(ui.vp.w-w)*4/5+'px';
// adjust vertical only if height defined?
var y=ui.bx.clientHeight;
l('dims:portrait box height:'+y);
ui.bx.style.top=(ui.vp.h-y)*2/3+'px';
}
ui.mi.o.style.left=ui.mi.x+'px';
ui.mi.o.style.top=ui.mi.y+'px';
}
// invoke relevant messaging and set timing
function Message(){
ui.wt=400;
var msg;
if(ui.sb) return sub_int;
// first view
if(tv<=1) {
if(ui.ab==true) return adb[0]; else return non[0];
} else if(ui.ab==true) {
if(ui.vf
Please wait "+Math.floor(ui.wt/20)+" seconds..."
}
// quick and dirty preloader
function prel(s=''){
if(s){
// add to load queue
const i=document.createElement('img');
i.src=s;
ui.aq.push(i);
return i;
} else {
// check queue, return true on complete
var c=0; for(a=0;a
The regulatory state is a $2 trillion tax on the American economy. We all want worker safety, a clean environment and consumer protections, but in too many cases the costs of regulations far outweigh the societal benefits. President-elect Donald Trump has promised to slash 10 rules for every new rule. Just do it, Mr. President.
As JFK, Ronald Reagan and others have proven throughout history, lower tax rates lead to more growth, more investment and more jobs. The Trump tax cuts meant that a typical family of four earning $75,000 a year saw their tax bill fall by half — a benefit valued at more than $2,000. And the corporate tax rate fell from 35% — the highest in the world — to 21%, bringing jobs and capital to America. Trump has promised to make all these tax cuts permanent. Why? Because they worked almost exactly as we anticipated they would.“Just do it, Mr. President.”
Growth will require more able-bodied Americans getting off welfare and into jobs. Welfare — which includes cash assistance, public housing, food stamps, disability payments, unemployment benefits and Medicaid — needs to be a hand up, not a handout.
America has well more than $50 trillion of natural resources that are accessible with existing drilling and mining technologies. This is a vast storehouse of wealth that far surpasses what any other nation is endowed with. We can use the royalty payments and leases to reduce our national debt while creating hundreds of thousands of jobs.
One of many ways to bring health care costs down to consumers (and taxpayers, who pay half the costs) is to require hospitals, pharmacies, doctors and health clinics to list prices for what they are charging. The Committee to Unleash Prosperity estimates that $1 trillion to $2 trillion could be reduced from health care costs, with no reduction in the quality of care, by allowing consumers to shop around on the internet for the best price — just as we do when we buy groceries, a home or a car. This will foster free market competition and lower prices.
Test scores in America have been plummeting. Kids are graduating from high school — if at all — without even being able to read the diploma. America no longer ranks in the top 10 in many academic achievement ratings.
Trump’s committed to securing our border, but we also need legal immigrants through a merit-based immigration system. This visa system would select immigrants based on their skills, talents, investment capital, English language ability and education level. These characteristics all presage success in America.
Our once-great cities in America — from New York to Chicago to Detroit to San Francisco to Seattle — have come to look like war zones. Crime has run rampant. Businesses and people and capital are fleeing and leaving the poorest Americans — mostly minorities — stranded with tragically limited opportunities other than working at Walmart or McDonald’s for minimum wage. Since 2020, our major cities have lost nearly 1 million residents. And tens of thousands of businesses.
There is a reason why three of the five wealthiest counties in America are in or around Washington, D.C. Washington is getting rich at the expense of the rest of us. Fewer than 10% of overpaid federal workers (of which there are more than 2 million) are working full time in the office even though COVID-19 ended three years ago. These are swamp employees that often get paid $150,000 or more a year. Fire them if they don’t show up. And relocate federal agencies in other cities.Sign Up to Receive Our Latest Updates!