			Cufon('h1')('h2');
		
			$(document).ready(function(){
				
				$('ul.main').fadeIn("slow");
				
				$("#Title a").fadeTo(500,0.5);	
				
			    $("#Title a").hover(
			      function () {
			        $(this).fadeTo(400,1.0);
			      }, 
			      function () {
			        $(this).fadeTo(800,0.6);
			      }
			    );
								
				$('div.showmoreinfo').fadeOut("fast");
			
				$("a.moreinfo").click(function(){
					$(this).next("div.showmoreinfo").slideToggle("fast");
					$(this).toggleClass("active"); 
					
					if ( $(this).hasClass("active") )
					  $(this).html("Close Window");
					else
					  $(this).html("Read More");					  

					  return false;
					
				});
										
				$(document).ready(function() {
					//area 1
					$('#Nav ul').children().hover(function() {
						$(this).siblings().stop().fadeTo(500,0.5);
					}, function() {
						$(this).siblings().stop().fadeTo(500,1);
					});
					
					$('ul.sub').children().hover(function() {
						$(this).siblings().stop().fadeTo(500,0.5);
					}, function() {
						$(this).siblings().stop().fadeTo(500,1);
					});
					
				});

			});