 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    * Filename: antoinedecasteras.js
    * Website: http://www.antoinedecasteras.com
    * Description: javascript 

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
    
function init(){
				sfHover();
			}
			womAdd('init();');
			
			// récupérer l'URL de la miniature et lui le /thumbnails pour obtenir l'URL de l'image version grande.
function createURL(lien) {
  if(lien)
  {
    mon_image = lien.getElementsByTagName('img')[0];
    if(mon_image)
    {
      return mon_image.src.replace('/thumbnails/','/');
      
    }
  }
   
}
			

$(document).ready(function(){		
		$('#photos').galleryView({
			panel_width: 550,
			panel_height: 350,
			frame_width: 100,
			frame_height: 64,
			transition_speed: 1200,
			background_color: '#ffffff',
			border: 'none',
			easing: 'easeInOutBack',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 52,
			filmstrip_position: 'top',
			overlay_position: 'top'
		});
	
		$('#photosalno').galleryView({
			panel_width: 550,
			panel_height: 350,
			frame_width: 100,
			frame_height: 64,
			transition_speed: 1200,
			background_color: '#ffffff',
			border: 'none',
			easing: 'easeInOutBack',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 52,
			filmstrip_position: 'top',
			overlay_position: 'top'
		});
	
		$('#photosagencement').galleryView({
			panel_width: 550,
			panel_height: 350,
			frame_width: 100,
			frame_height: 64,
			transition_speed: 1200,
			background_color: '#ffffff',
			border: 'none',
			easing: 'easeInOutBack',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 52,
			filmstrip_position: 'top',
			overlay_position: 'top'
		});
		
		$('#photoshome').galleryView({
			panel_width: 550,
			panel_height: 350,
			frame_width: 100,
			frame_height: 64,
			transition_speed: 1200,
			background_color: '#ffffff',
			border: 'none',
			easing: 'easeInOutBack',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 52,
			filmstrip_position: 'top',
			overlay_position: 'top'
		});
		
		$('#photoselectro').galleryView({
			panel_width: 550,
			panel_height: 350,
			frame_width: 100,
			frame_height: 64,
			transition_speed: 1200,
			background_color: '#ffffff',
			border: 'none',
			easing: 'easeInOutBack',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 52,
			filmstrip_position: 'top',
			overlay_position: 'top'
		});



/* lightbox
________________________________________________ */

 
var titre = $("#main h1").text();
titre = "Zoom sur " + titre;   

			$("#photonews a").each( function () { 
        var lien =  this.href = createURL(this);
				$(this).attr('href',lien);
				$(this).attr('title',titre);
				$(this).attr('rel',"lightbox");      
		     });
 
      $('a[rel*=lightbox]').lightbox();   

/* Fin Jquery */	
});


 







