$(document).ready(function(){ // wait for the DOM to load, then:

//	$('html,body').delay(1000).animate({scrollTop: $(".content-mar").offset().top},800); // scroll to chart

	$('.no-splash .splash').delay(1500).animate({marginTop:'-201px'},1000); // slide splash image out of view
	
	$('#imm').hover( // show/hide the marriage visa link
		function(){
			$('#marr img', this).fadeTo(150, 1.0);
		},
		function(){
			$('#marr img', this).fadeOut(400);
			
		});
	
	$('ul.nav li a').hover( // show/hide nav links
		function(){
			$('.top', this).stop().animate({opacity:'0'}, 100);
		},
		function(){
			$('.top', this).stop().animate({opacity:'1.0'}, 400);
			
		});
	
}); 

