$(function(){
	$.preloadImages = function(){
	var preload = ['photos_bg/0.jpg', 'photos_bg/1.jpg', 'photos_bg/2.jpg','photos_bg/3.jpg','photos_bg/4.jpg'];
	$(document.createElement('img')).bind('load', function(){
	if(preload[0]) this.src = preload.shift();
	}).trigger('load');
}
$.preloadImages();
    $("div.menu_header").click(function(){ 
		$("div.menu_header").css({"background-color":"#dfdfdf"});
		$(this).css({"background-color":"#999999"});
      var index = $("div.menu_header").index(this);
	    $("div#foto_js_header img").fadeOut(400, function () {$("div#foto_js_header img").attr({src: "photos_bg/" + index + ".jpg", title: "Фотограф Анна Кравцова", alt: "Фотограф Анна Кравцова"}).fadeIn(400);}); 
	});		
}); 
