
$(document).ready(function(){

	if (!ie) {
		var ms = 500;
		setTimeout(function(ms) {
			$("#content .right .introduction").fadeTo("slow",1); 
 			$("#content .right .testimonial").fadeTo("slow",1); 
		}, ms);
	}
	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	$("#navigation ul li a").click(function () { 
 	
 		setTimeout("location.href='"+this+"'",1000);
 		
 		$("#content .right .introduction").fadeOut(1000);
 		$("#content .right .testimonial").fadeOut(1000);
   		
   		return false;
   	});
   	
});