$(document).ready(function() {
	$('#nav li a').each(function(index) {
		$(this).mouseenter(function(){
			$(this).fadeTo(200,0.4);
		});
		$(this).mouseout(function(){
			$(this).fadeTo(200,1);
		});
	});
	$('#nav .marked').each(function(index) {
		$(this).fadeTo(1,0.6);
	});
	
	$('#head').click(function(){
		window.location="http://www.grafinger.info";
	});
	

	
	$('.gallery a img').click(function(){

		var img=$("<img/>", {
		  "class": "galimg",
		  src: $(this).parent().attr('href'),
		  alt: $(this).attr("alt"),
		  click: function(){
			$(this).fadeTo(200,0,function(){$(this).remove();});
		  }
		}).css("display","none")
		.load(function(){
		
			$(this).css("position","fixed")
			.css("max-width",$(window).width()*0.86)
			.css("max-height",$(window).height()*0.86)
			.fadeTo(0, 0)
			.appendTo("body")
			.css("left", $(window).width()/2 - $(this).width()/2 )
			.css("top", $(window).height()/2 - $(this).height()/2)
			.fadeTo(500, 1);
			
			
		});
		
		
		
		return false;
	});
});


