/**
 * berengerzyla.info
 *	b_ui.js
 *
 *	Gestion diverse des comportements / liens
 */
 $(document).ready(function() {
	Shadowbox.LANG = {
		code: "fr",
		of: "sur",
		loading: "chargement",
		cancel: "Annuler",
		next: "Suivant",
		previous: "Précédent",
		play: "Jouer",
		pause: "Pause",
		close: "Fermer",
		errors: {
			single: 'You must install the <a href="{0}">{1}</a> browser plugin to view this content.',
			shared:'You must install both the <a href="{0}">{1}</a> and <a href="{2}">{3}</a> browser plugins to view this content.',
			either:'You must install either the <a href="{0}">{1}</a> or the <a href="{2}">{3}</a> browser plugin to view this content.'
		}
	};
	Shadowbox.init();
	
	$('a#sidebar_handler').click(function() {
		if ($('#sidebar_handler').hasClass('sidebar_is_down')) {
			$('#sidebar_content').slideUp();
			$('#sidebar_handler').removeClass('sidebar_is_down');
		}
		else {
			$('#sidebar_content').slideDown();
			$('#sidebar_handler').addClass('sidebar_is_down');
		}
		return false;
	});
	
	$('a[rel="external"]').each(function(index) {
		if ($(this).attr('href') && '#' != $(this).attr('href')) {
			$(this).attr('target', '_blank');
		}
	});
 });