/* $Id: cmactions.js,v 1.2 2011/10/19 14:21:06 Vlado Exp $ 
 * Cyklomag javascript actions */
$(function(){
  $('#page-up').hover(function() {
    $(this).css('cursor','pointer');
  }, function() {
    $(this).css('cursor','auto');
  }).bind('click',function(event) {
    $(window).scrollTop(0);
  });
  $('#page-back,#page-back2').hover(function() {
    $(this).css('cursor','pointer');
  }, function() {
    $(this).css('cursor','auto');
  }).click(function() {
    history.back();
    return false;
  });
});

