this.naveff = function (e) {
	$(e).hover(function(){
		$(this).stop().fadeTo(400, .7)
	}, 
	function() {
		$(this).stop().fadeTo(300, 1)
	})
}



$(document).ready(function(){
	naveff('ul#nav a, .entrytitle h2, #content > div img:not([src~=steph_nico.jpg])')
	naveff('a#mainlogo')
	

	$('div#slider > img').click(function(){
		window.location = 'http://archive.bm-photo.ch/c/bm-photo/gallery-list'
	}).css('cursor','pointer')
	
	$.preload( 'div#slider img', {
		onFinish:function(){
			$('div#slider').innerfade({ speed: 'slow', timeout: 5000, type: 'random', containerheight: '633px' })
		}
			
	});


})