/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Abraham the Iconoclast

81 cm x56cm

2006

The prophet Abraham portrayed on the day of a festival celebration attended by all.  He snuck into a temple of idols and smashed them with a sharp axe.  All except for the largest one.  He then hung the ax around the neck of the big idol. He wanted to prove to the people that worshipping idols was foolish; the idols couldn’t even help themselves; how can they help others?

next work
Adoration
scroll for more
gallery
// Hiding Cursor when move out of viewport $("a").mouseenter(function () { $(".cursor").click(); }); $("a").mouseleave(function () { $(".cursor").click(); });