
var posRight=0;var posBottom=0;jQuery(document).ready(function(){jQuery('.quote-link').css({'position':'absolute','right':posRight,'bottom':posBottom}).appendTo('body');function reset_pos($element){if(jQuery(window).scrollTop()<=(jQuery(document).height()-jQuery(window).height()-jQuery('#footer').height())){$element.stop(true,false).animate({'right':(posRight-jQuery(window).scrollLeft()),'top':(jQuery(window).scrollTop()+jQuery(window).height()-$element.height()-posBottom)},1500,'easeInOutCirc');}else{$element.stop(true,false).animate({'right':(posRight-jQuery(window).scrollLeft()),'top':(jQuery(document).height()-$element.height()-jQuery('#footer').height()-posBottom)},1500,'easeInOutCirc');}}
reset_pos(jQuery('.quote-link'));jQuery(window).bind('resize scroll',function(){reset_pos(jQuery('.quote-link'));});});
