$(document).ready(function() {
	
	// Prechargement
	$('a.preload').preload();
	
	// Shadowbox
	Shadowbox.init();
	
	$("a.shadowbox").click(function() {
		Shadowbox.open({
			player:     'img',
			title:      $(this).attr("title"),
			content:    $(this).attr("href")
		});
		return false;
	});
	
});

function video() {
	Shadowbox.open({
		player: 'flv',
		title: 'Ar Furlukin Vidéo',
		content: SITE_PATH+"content/media/video/arfurlukin.flv",
		width: 320,
		height: 240
	});
}