//alert('homefancybox');
var $ = jQuery.noConflict();

$(document).ready(function() {
/*
	$(".group").fancybox();

	$(".group").fancybox({
				'titlePosition'		: 'inside',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.9
			});
*/
	
	$("#manual").click(function() {
		
		$.fancybox([
			{ 'href' : 'Portals/0/img_escola-01.jpg', 'title' : 'Recepção' },
			{ 'href' : 'Portals/0/img_escola-02.jpg', 'title' : 'Lojinha' },
			{ 'href' : 'Portals/0/img_escola-03.jpg', 'title' : 'Salas' },
			{ 'href' : 'Portals/0/img_escola-04.jpg', 'title' : 'Estúdio de Som' },
			{ 'href' : 'Portals/0/img_escola-05.jpg', 'title' : 'Bateria' }
		/*	{ 'href' : 'http://www.youtube.com/embed/L9szn1QQfas?autoplay=1', 'title' : 'Video' } */
		], {
			'titlePosition'		: 'inside',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.9,
			'title'             : 'Escola de Músicos'
		});
	});
	
	

			
});



