// JavaScript Document
$(document).ready( function(){
						
	$('#sitemap_mo').animate({'opacity':0},200);	
	

							
	$('#footer a').mouseover( function() {
		if ( $(this).attr('title') == 'sitemap_nav') {
			$('#sitemap_mo').stop().show().animate({'opacity':1},200);	
		}
	});
	
	$('#sitemap_mo').mouseleave( function(){
		$(this).stop().hide().animate({'opacity':0},200);
	});
	
	$('#footer a').click( function(){ 
			if ( $(this).attr('title') == 'show_nwslttr') {
			$('#newsletterwrapper').show(); }
										  
										  });
	$('#nwslttr_cls').click( function(){
		$('#newsletterwrapper').hide();							  
									  });
	
	$('#sitemap-menu <li/>:first-child').replaceWith('<h3></h3>');

});
