// JavaScript Document




//alert("skusza");	


							  
	$("#web").show();
	$("#first").hide();
	$("#our").hide();
	$("#your").hide();
	

							
						  
		$("#weblink").click(function() {
								  
			$("#web").fadeIn(100);
			$("#first").hide();
			$("#our").hide();
			$("#your").hide();
			
	})
	
		$("#firstlink").click(function() {
		
			$("#first").fadeIn(100);
			$("#our").hide();
			$("#your").hide();
			$("#web").hide();
			
	})
	
		$("#ourlink").click(function() {
									
			$("#our").fadeIn(100);
			$("#your").hide();
			$("#web").hide();
			$("#first").hide();
			
	})
	
		$("#yourlink").click(function() {
									
			$("#your").fadeIn(100);
			$("#web").hide();
			$("#first").hide();
			$("#our").hide();
			
	})
	


						  
						
						  
					


	
							
							
							
						
