$(document).ready(function (){
	//Gallery
	$(".vgallery a").viewbox();
	
	//Music - mp3
	$('.vplayer a').viewbox();
	
	//YouTube films
	$('.vvideo a').viewbox({
		widthWindow: 900 
	});
	
	//Vimeo films
	$('.vvimeo a').viewbox({
		widthWindow: 900
	});
	
	//Frame 
	$('#vframe').viewbox({
		frame: 1,
		heightWindow: 275,
		widthWindow: 630,
		titleThumb: 0
	});
	
	$('.vmap').viewbox({
		frame: 1,
		heightWindow: 450,
		widthWindow: 650,
		titleThumb: 0,
		navigation: 0
	});
	
	//Inline
	$('#vinlinelink').viewbox({
		heightWindow: 190,
		widthWindow: 450
	});
	
	//Ajax
	$('#vajax').viewbox({
		heightWindow:450,
		widthWindow: 555,
		ajaxSuccess: function(data) { 
			$('.vb_wrap .content .content').html(data);
		}
	});
}); 

