$(function(){
 $("#profile_btn").hover(
	 function(){$(this).addClass("profile_btn_o");},
	 function(){$(this).removeClass("profile_btn_o");}
 );
 
 $("#profile_back_btn").hover(
	 function(){$(this).addClass("profile_btn_o");},
	 function(){$(this).removeClass("profile_btn_o");}
 );
 
 
		   
 $("#profile_btn").click(function(){
  $("#porfile01").animate({left:'-=639',opacity: '0'},700,"easeInOutCubic");
  $("#porfile02").animate({left:'1',opacity: '100'},700,"easeInOutCubic");
 });
 $("#profile_back_btn").click(function(){
  $("#porfile01").animate({left:'1',opacity: '100'},900,"easeInOutCubic");
  $("#porfile02").animate({left:'+=639',opacity: '0'},900,"easeInOutCubic");
 });
});