// JavaScript Document
Shadowbox.init({
					
					skipSetup: true,
					players:  ['galery']
				
					
					
					
				
				});
				
				
				
				var openContentShodowbox = function(url,data,title,getHeight,getWidth){
				
					
					
					$.ajax({

								// Usando metodo Post
								type: 'POST',
	
								// this.action pega o script para onde vai ser enviado os dados
								url: url,
	
								// os dados que pegamos com a função serialize()
								data: data,
	
								// Antes de enviar
								beforeSend: function(){
										
								},
							
								success: function(txt){
								
									
									
									Shadowbox.open({
										content:    txt,
										player:     "html",
										title:      title,
										height:     getHeight,
										width:      getWidth
									});
					
									
									
								}
		
       					 })

				};
				
				
				
				