	$(window).load(function() {
		
			$('#subcontent').slideDown('slow', function() {
				// Animation complete.
				//createSlide();
			});		
	  
	});  

	$(document).ready(function(){

		
		
		$('img[class=sfade2]').hoverIntent({
			over: makeTall2, 
			timeout:500, 
			out: makeShort
		});

		$('img[class=sfade]').hoverIntent({
			over: makeTall, 
			timeout: 200, 
			out: makeShort
		});
		$('img[class=sfade3]').hoverIntent({
			over: makeTall3, 
			timeout: 200, 
			out: makeShort
		});
		$('img[class=sfade4]').hoverIntent({
			over: makeTall5, 
			timeout:500, 
			out: makeShort
		});

		
	}); // close document.ready

	function makeTall(){   $(this).fadeTo("fast", 0.50); makeTall4();}
	function makeShort(){  $(this).fadeTo("fast", 1.00); }
	function makeTall2() {  $('#nav-two').animate({"height":36},200); }
	function makeTall3() {   $(this).fadeTo("fast", 0.50); }		
	function makeTall5() {   $(this).fadeTo("fast", 0.0); }

	function makeTall4() {
		if  ($('#nav-two').css("display") == "none"){
				 
				
				 
			}else{
				
				$('#nav-two').animate({"height":0},200);
				
			}
	}
