I am facing one problem with fancybox loading.
I have following page layout:

I have written code for including jquery.fancybox-1.2.6.js and jquery.fancybox-1.2.6.css in browse.php file as well as CSS for fancybox (suggest me if I have included in wrong file instead of explorer.php)
$(".view_details").fancybox( {
'overlayOpacity' : 0.1,
'showCloseButton' : true,
'frameHeight' : 250,
'frameWidth' : 300,
'hideOnContentClick':false,
'centerOnScroll' : false
});
, Now browse.php is loaded each time when user click on link in DIV 1 pane.
In browse.php I am calling fancybox on a link,
<a class="view_details" href="file.php?par=1" >View Details </a>
But Its not working, sometime its open at very first time and then onwards showing error that TypeError: loading is undefined.
Please help me in this situation.
Thanks in advance.