fancybox2.1.5 prevent close click outside of window

fancybox2.1.5 prevent close click outside of window

Hi,

How can i make no close click outside of the window, when fancybox is open.

If i try like below it is opening when i load the url in browser,fancy box is opening automatically.
I like to do fancy box should be open when i click the link and once it is opened if i click outside of the window fancy box should not close.It should still remains.
My code: What is the issue with this ......

<script type="text/javascript">           
            jQuery.noConflict();
            jQuery(document).ready(function() {
                jQuery('.fancyTrigger').fancybox({
                        type: 'ajax',               
                        helpers   : {
                                  overlay : {closeClick: false}
                                }
                            });
                        });       
    </script>

<a class="fancyTrigger" href="My PAGE.html">Settings</a>

How can resolve it?
Thanks
Siva