
$(document).ready(function(){
	$("#su-pagepre").hover(
	  function () {
	    $(this).addClass("pagedivhov");
	    $(this).children("#imgpre").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrleft1.gif"});
	    $(this).children("a").addClass("pagelink");
	  },
	  function () {
	    $(this).removeClass("pagedivhov");
	    $(this).children("#imgpre").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrleft.gif"});
	    $(this).children("a").removeClass("pagelink");
	  }
	);
	
	$("#su-pagenext").hover(
	  function () {
	    $(this).addClass("pagedivhov");
	    $(this).children("#imgnext").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrright1.gif"});
	    $(this).children("a").addClass("pagelink");
	  },
	  function () {
	    $(this).removeClass("pagedivhov");
	    $(this).children("#imgnext").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrright.gif"});
	    $(this).children("a").removeClass("pagelink");
	  }
	);

	$("#sd-pagepre").hover(
	  function () {
	    $(this).addClass("pagedivhov");
	    $(this).children("#imgpre").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrleft1.gif"});
	    $(this).children("a").addClass("pagelink");
	  },
	  function () {
	    $(this).removeClass("pagedivhov");
	    $(this).children("#imgpre").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrleft.gif"});
	    $(this).children("a").removeClass("pagelink");
	  }
	);
	
	$("#sd-pagenext").hover(
	  function () {
	    $(this).addClass("pagedivhov");
	    $(this).children("#imgnext").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrright1.gif"});
	    $(this).children("a").addClass("pagelink");
	  },
	  function () {
	    $(this).removeClass("pagedivhov");
	    $(this).children("#imgnext").attr({src: "http://www.blog.ukrbiznes.com/img/pager/pagearrright.gif"});
	    $(this).children("a").removeClass("pagelink");
	  }
	);	
	
	
});
