function bookmark() {
 if (navigator.appName == 'Microsoft Internet Explorer') {
	 window.external.AddFavorite(document.location.href, document.title);
 }
 else {
	 window.sidebar.addPanel(document.title, document.location.href, '');
 }
} 

$(document).ready(function() {
    //zoom photo
    $('a.lightbox').lightBox();
	$('#home_voeux').click();
	
    var i = 0;
    $('#nav>li').each(function() {
        /*
        this.style.margin = 0;
        this.style.padding = 0;
        this.style.height = '25px';
        */
 
        var a = $(this).children('a');
        var text = a.text();
 
        a.text('');
		if ($(this).hasClass('active')){
			a.append(
				'<img src="/img/struct/nav/' +
				i +
				'_on.png" alt="' +
				text +
				'" />'
			);		
		}
		else {
			a.append(
				'<img src="/img/struct/nav/' +
				i +
				'.png" alt="' +
				text +
				'" />'
			);
		}
        i += 1;
    });
 
    $('#nav>li:not(.active)').hover(
		function() {
			var img = $(this).find('img');
			var src = img.attr('src').replace('.png', '_on.png');
			img.attr('src', src);
		},
		function() {
			var img = $(this).find('img');
			var src = img.attr('src').replace('_on.png', '.png');
			img.attr('src', src);
		}
	);
});

 

