
$(document).ready(function(){
						   $('.latest_img').hide();				
							$('.latest_img').fadeIn(2500)
						   $(".latest_img").hover(function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
						   });
						   });
						   
						   
$(document).ready(function(){
						   $('.table2').hide();				
							$('.table2').delay(800).fadeIn(500)
							});
							
$(document).ready(function(){
							$('#content img').hide();				
							$('#content img').delay(800).fadeIn(3000)
							});

$(document).ready(function(){
							$('.linkage').hide();				
							$('.linkage').delay(800).fadeIn(2000)
							});

$(document).ready(function(){
							$('#header h1').hide();				
							$('#header h1').fadeIn(500)
							});
							
