var top=0;
$(document).ready(function(){

	imgEl = $("#photo img");

	$("#me_label a").click(
	function(){
		if (imgEl.attr('src').search('gif')!=-1){
			imgEl.attr('src', imgEl.attr('src').replace('gif', 'jpg'));
			return;
		}
	}
	);

	$("#me_label a").hover(
	function(){},
	function (){
		if (imgEl.attr('src').search('jpg')!=-1){
			newSrc = imgEl.attr('src').replace('jpg', 'gif');
			imgEl.attr('src', newSrc);
		}
	}

	);


	$("#epigraph_label a").click(function(){
		top-=75;
		$("#poem cite").animate({
			marginTop: top+"px"

		}, 1500 );
	});



	$("#epigraph_label a").hover(
	function (){},
	function (){
		top=0;
		$("#poem cite").animate({
			marginTop: top+"px"

		}, 1500 );
	});

	$("#textsearch").click(function(){$(this).val('');});

});

jQuery(document).ready(function($) {
	$('a[rel*=facebox]').facebox({
		opacity      : 0.9,
		faceboxHtml  : '\
    <div id="facebox" style="display:none;"> \
      <div class="popup"> \
        <table class="body"> \
          <tbody> \
             <tr> \
              <td> \
              <div class="footer"> \
                  <a href="#" class="close"> \
                    Закрыть \
                  </a> \
                </div> \
                <div class="content"> \
                </div> \
                </td> \
                </tr> \
                 </tbody> \
        </table> \
      </div> \
    </div>'


	});

});
