Shadowbox.init({
    language:   "en",
    players:  ['img', 'html', 'swf', 'iframe'],
	   overlayOpacity: .8,   // changes opacity of the shadow
	   resizeDuration: 0,
	 overlayColor: '#000000' //changes color of shadow



});


function openShadowbox(content, width, height, player, title){
    Shadowbox.open({
        content:    content,
        width:      width,
		height:     height,
        player:     player, 
        title:      title 		
    });
}



