usesa,
ваша открывашка 213 ставить после jquery.min.js
$(function() {
var $but = $(".pagin a"),
$blocks = $(".gallery [id^='full']");
$but.each(function(i, elem) {
var $el = $(elem);
$el.click(function(event) {
event.preventDefault();
$but.not($el).css({opacity: 0.5});
$el.css({opacity: 1});;
$blocks.filter(function(j, el) {
i == j && $(el).show();
return i != j
}).hide()
})
})
});