$(function() {	
		
		 var visible_menu = 1;
		 
		 $("#textshowhide").click(function () {
		 		
			if (visible_menu==1)
			{
				//== hide: == 				

				$("#text, #languages").fadeOut(200);
								
				$("#text_content").animate({ 
					width: "0",
					right: "0"
				 }, 350 );								

				$('#textshowhide').attr('src', websiteURL+'http://www.santoriniprincess.gr/images/text_open.png');
				
				$("#text_hide").animate({ 
					width: "0"
				 }, 400 );
				  				  
				visible_menu = 0;				  					  
			 }
			 else
			 {
			 	//== show: ==

				$('#textshowhide').attr('src', websiteURL+'http://www.santoriniprincess.gr/images/text_hide.png');
				
			 	$("#text_hide").animate({ 
					width: "267"
				 }, 400 );
				
				visible_menu = 1;

				$("#text_content").animate({ 
					width: "248",
					right: "15"
				 }, 420, function(){
				 	$("#text, #languages").fadeIn(250);
				 });										
			 }
			 								  
		 });
				 
	});
