/* -------------------------------------------------------------- 
  
   style.js
   * Javascript for http://denis.turnthelighton.fr/
   * Author : Denis Fongue
   
   This file defines the hand-made javascript actions of the website
   
-------------------------------------------------------------- */	
	
	if ((navigator.userAgent.indexOf('Firefox')!=-1) && (navigator.userAgent.indexOf('Win')!=-1)){
		document.write('<style type="text/css" media="screen">\n');
		document.write('li a, dl a {\n');
		document.write('	padding-bottom: 0;\n');			
		document.write('}\n');
		document.write('li a:hover, dl a:hover {\n');
		document.write('	padding-top: 0;\n');			
		document.write('}\n');
		document.write('<\/style>\n');
	}
	
	if ((navigator.userAgent.indexOf('Firefox')!=-1) && (navigator.userAgent.indexOf('Mac')!=-1)){
		document.write('<style type="text/css" media="screen">\n');
		document.write('li a:hover, dl a:hover {\n');
		document.write('	padding-top: 1px;\n');			
		document.write('}\n');
		document.write('<\/style>\n');
	}
	
	 $(document).ready(function(){
		    	if(!$.fontAvailable('Didot')) { 
		    		Cufon.replace('h1,h2,h3,#about dt');
		    		$('h1').css({'font-size':'3em','line-height':'0.67em'});
        		};
		       	$(".lightbox").lightbox();
			});