$(function () {
	
	if ($.browser.msie) {
	$('a.book').show();
	
	}
	
	
	var slides = $('.slide');
	slides.hide().filter(':first').show();
	$('.slots a').filter(':first').addClass("slot1");
			
			
	$('.slots a').click(function () {
		slides.hide();
		$('.slots a').removeClass("slot1 slot2 slot3 slot4 slot5 slot6 slot7 slot8 picLabel");
		$('.slots li a span').removeClass("passivePic");
	
		
		slides.filter(this.hash).show();
		$('.slots a:eq(' + (this.hash.substring(5) - 1) +')').addClass(this.hash.substring(1));
		
		
	
		
		if (this.hash.substring(5) < 6 && this.hash.substring(5) > 1)
		{
		$('.slots a').filter(':first').addClass("picLabel");
		$('.slots a span').filter(':first').addClass("passivePic");
		}
			return false;
	});
	
	$('a.book').click(function () {
		if ($.browser.msie) {
	
		  
		  window.external.AddFavorite( location.href, document.title);
	 
		}		
		
		
	
		
		
		
		
		return false;
	});
	
	
	bg = ($("#preload").attr("src"));
	last = bg.lastIndexOf("\.jpg");
	number = bg.substr(last- 3, 3);
			
	var img = new Image();

	$(img).load( function () {

		$(this).hide();
		$('body').prepend(img);
		$(this).fadeIn(1600);
		}).attr({ 
          src: '/assets/images/hintergundfotos/scharf/lebensspuren_back_' + number + '\.jpg',
          id: "postload"          
        });
			
});
