$(document).ready(function(){
   var options = {
   resizeLgImages:     true, loadingImage: "images/loading.gif",
   displayNav:         true, handleUnsupported:  'remove',
   keysClose:          ['c', 27], // c or esc
   autoplayMovies:     false,
   overlayColor:       "#000",
   overlayOpacity:     0.5,
   modal:	       false	
   
   };
   Shadowbox.init(options);
});
		
function abrirSB(type, title, url)
 {
     Shadowbox.init({skipSetup: true});
     Shadowbox.open({type: type, title: title, content: url});
}; 

