
 jQuery(document).ready(
				function(){

					jQuery('#innerfade ul').innerfade({
						speed: 3000,
						timeout: 5000,
						type: 'sequence'
					});
					
				var container = jQuery("#container");
				
				if( typeof( window.innerWidth ) == 'number' ) {
					var Hh = window.innerHeight;
				
				}else{
					var Hh = document.documentElement.clientHeight;
				
				}


//				alert(Hh);
				var HH2 = Hh - jQuery("#top").height() - jQuery("#bottom").height();
//				alert(HH2);
				//container.css("height",HH2);
					
});
