window.onload=function(){
jah('/paging.php?page=0','gall_thumbs');
}

$(document).ready(function(){
  $(".img1").addClass("onstate");
	$(".img1").click(function () {
       $(".img1").addClass("onstate");
       $(".img2").removeClass("onstate");
       $(".img3").removeClass("onstate");
       $(".img4").removeClass("onstate");
       $(".img5").removeClass("onstate");
    });
	$(".img2").click(function () {
       $(".img1").removeClass("onstate");
       $(".img2").addClass("onstate");
       $(".img3").removeClass("onstate");
       $(".img4").removeClass("onstate");
       $(".img5").removeClass("onstate");
    });
	$(".img3").click(function () {
       $(".img1").removeClass("onstate");
       $(".img2").removeClass("onstate");
       $(".img3").addClass("onstate");
       $(".img4").removeClass("onstate");
       $(".img5").removeClass("onstate");
    });
	$(".img4").click(function () {
       $(".img1").removeClass("onstate");
       $(".img2").removeClass("onstate");
       $(".img3").removeClass("onstate");
       $(".img4").addClass("onstate");
       $(".img5").removeClass("onstate");
    });
	$(".img5").click(function () {
       $(".img1").removeClass("onstate");
       $(".img2").removeClass("onstate");
       $(".img3").removeClass("onstate");
       $(".img4").removeClass("onstate");
       $(".img5").addClass("onstate");
    });
});
