Hey, it looks like something on your site has some broken javascript, preventing the gallery from loading. This block of code is making it fail, but I'm not sure which one of your plugins is injecting this JS. The problem is the .live method has been removed from jQuery.
--------------
// When clicking on the button close or the mask layer the popup closed
$('a.close, #mask').live('click', function() {
Uncaught TypeError: Object [object Object] has no method 'live'
$('#mask , .login-popup').fadeOut(300 , function() {
$('#mask').remove();
});
return false;
});
---------------
|