		$(document).ready(
			function() {
					$("#all").fadeIn(1500);
			}
		);
		
		
		
		$(document).ready(function() {

			$("#header a img").fadeTo("slow", 0.7);
			$("#header a img").hover(function(){
				$(this).fadeTo("normal", 0);
			},function(){
				$(this).fadeTo("normal", 0.7);
			});
			
			$("#menu a img").fadeTo("slow", 0);
			$("#menu a img").hover(function(){
				$(this).fadeTo("normal", 0.3);
			},function(){
				$(this).fadeTo("normal", 0);
			});

		});
