$(document).ready(function(){
					if($('#contact').is('p')){	
						welcome();
					}
		});


function welcome(){
		$('#contact>a').click(function(){
									   $('#info').fadeOut('slow',function(){
																		$('#contacts').fadeIn('slow');	 
																			 });
									   return false;
									   });
		$('#btn_close>a').click(function(){
										 $('#contacts').fadeOut('slow',function(){
																		$('#info').fadeIn('slow');	 		
																				});
										 return false;
										 })
}