jQuery(document).ready(function() {

	/*
	*   Examples - manual call
	*/

	$("#manual1").click(function() {
		$.fancybox({
			//'orig'			: $(this),
			'padding'		: 0,
			'href'			: 'http://farm3.static.flickr.com/2687/4220681515_cc4f42d6b9.jpg',
			'title'   		: 'Lorem ipsum dolor sit amet',
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'
		});
    });
    
    $("#portfolio").click(function() {
		$.fancybox([
			{
				'href'	: 'http://www.acrona.com/realisations/hincker-associes.png',
				'title'	: 'http://www.hincker-associes.com - Site à fort contenu réalisé avec Joomla en collaboration avec Les Médias Associés'
			},
			{
				'href'	: 'http://www.acrona.com/realisations/onglemod.png',
				'title'	: 'http://www.bijoux-magali.fr - boutique en ligne avec Prestashop'
			},			
			{
				'href'	: 'http://www.acrona.com/realisations/ats-interim.png',
				'title'	: 'Site en PHP/MySQL pour une agence d\'emploi'
			},
			{
				'href'	: 'http://www.acrona.com/realisations/perez-avocat.png',
				'title'	: 'http://www.perez-avocat.fr - site page-vitrine avec formulaire'
			},
			{
				'href'	: 'http://www.acrona.com/realisations/bijoux-magali.png',
				'title'	: 'http://www.bijoux-magali.fr - boutique de bijoux'
			},			
			{
				'href'	: 'http://www.acrona.com/realisations/afredh.png',
				'title'	: 'http://www.afredh.org - site fait avec Joomla pour l\'Afredh, Association de Formation et de Recherche en Droit Européen des Droits de l Homme'
			}
		], {
			'padding'			: 0,
			'cyclic'		: 'true',
			'titlePosition'	: 'over',
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'type'              : 'image',
			'changeFade'        : 0
		});
	});


});

