This demo shows how elements with different position attributes can still have a spotlight.
This javascript code for this page is:
$(document).ready(function(){
$('a#spotlight1-noanim').click(function(){
$('#box1').spotlight({animate:false});
});
$('a#spotlight1').click(function(){
$('#box1').spotlight();
});
$('a#spotlight2').click(function(){
$('#box2').spotlight();
});
$('a#spotlight3').click(function(){
$('#box3').spotlight();
});
});