$(document).ready(function()
{
$('[data-toggle="popover"]').popover();
$('a.to-top').click(function()
{
$('html, body').animate({
scrollTop: 0
}, 700);
return false;
});
$('#printMe').click(function(e)
{
window.print();
e.preventDefault();
return false;
});
});