$(document).ready(function(){
	var options = {
		resizeLgImages:     true, loadingImage: "elements/loading.gif",
		displayNav:         true, handleUnsupported:  'remove',
		keysClose:          ['c', 27], // c or esc
		autoplayMovies:     false
	};
	Shadowbox.init(options);
});

function abrirSB(type, title, url, width, height)
	 {
		 Shadowbox.init({skipSetup: true});
		 Shadowbox.open({type: type, title: title, content: url, width: width, height: height});
}; 
