/**
 * @see ViewFooterPublic.class.php
 */
$(document).ready(function(){
	
	//Init "footer" lightbox
	lightboxFooter = $.lightbox('lightbox-footer');
	lightboxFooter.showWrapper();
	lightboxFooter.showCloseButton();
	
	/* Video */
	$('#footer-video').click(function(){
		var content = '<iframe src="http://player.vimeo.com/video/22646952?title=0&amp;portrait=0&amp;color=ff9933" width="800" height="445" frameborder="0" marginheight="0" marginwidth="0" scrolling="no"></iframe>';
		lightboxFooter.setTitle('StoneBox en vidéo');
		lightboxFooter.setContent(content);
		lightboxFooter.open();
	});
	
	/* Footer links */
	$('#footer-link-contact').click(function(event){
		event.preventDefault();
		$.ajaxer('/main.php', { pageKey: 'ajax-form-contact' },
			function(data){
				lightboxContact.setContent(data.html);
				lightboxContact.open();
			}
		);
	});
	
	$('#footer-link-credits').click(function(event){
		event.preventDefault();
		$.ajaxer('/main.php', { pageKey: 'ajax-credits' },
			function(data){
				lightboxFooter.setTitle(data.title);
				lightboxFooter.setContent(data.html);
				lightboxFooter.open();
			}
		);
	});
	
	$('#footer-link-imprint').click(function(event){
		event.preventDefault();
		$.ajaxer('/main.php', { pageKey: 'ajax-imprint' },
			function(data){
				lightboxFooter.setTitle(data.title);
				lightboxFooter.setContent(data.html);
				lightboxFooter.open();
			}
		);
	});
});
