Shadowbox.init({
	//modal   : true
	
});

var sbi = Shadowbox; 
function openTopSBX(el){ 
  if(sbi){ 
    sbi.open( { 
				//modal   : true,
				content : el.href , 
                player 	: 'iframe' ,
                title 	: el.title||'' ,
				width	: 320,
				height	: 370
				
                   //could include width/height/options if desired 
                   } 
                ); 
    return false; 
  }else{ //no Shadowbox in parent window! 
    return true; 
  } 
} 
