// JavaScript Document
$(document).ready(function(){
//start doc ready	

$('.seoCaption').hide();

$('#seoTable tr').hover(
  function () {
    var theHeight = $(this).find('.seoCaption').height();
	theHeight = theHeight + 20;
	var thisSeo = $(this).find('.seoCaption');
	thisSeo.css('margin-top', -(theHeight/2));
	thisSeo.fadeIn(200);
	thisSeo.animate({	
					left: -10,
						}, 200 );

  },
  function () {
	 var thisSeo = $(this).find('.seoCaption');
	thisSeo.stop(true,true).fadeOut(200);
	thisSeo.stop(true,true).animate({
					left: -50,
					}, 200 );
	
  }
);	

if($('#payerrors').is(":visible")){
	$('#payerrors').hide();
	$('#payerrors').slideDown(1000);
}
//end doc ready	
});
