This demo shows how different elements can have a spotlight.

This javascript code for this page is:
$(document).ready(function(){
$('#image').click(function(){
$(this).spotlight();
});
$('#form').click(function(){
$(this).spotlight();
});
});