/* Copyright (c) 2007 Onlyweb Studio | http://www.onlyweb.ru/ */
/*


From Russia with love!

*/




var newClass = function() {
	return function() {
		return this.init.apply(this, arguments);
	}
}


var PhotoChanger = newClass();
PhotoChanger.prototype = {

  init: function(p) {
    var t = this;
    t.photoItemContainer = $('.PhotoItemContainer');
    t.photoItems = t.photoItemContainer.find('.PhotoItem');
    t.previewItemContainer = $('.Previews');
    t.previewItems = t.previewItemContainer.find('.PreviewItem');
  },

  change: function(k) {
    var t = this;
    t.photoItems.each(function() {
      $(this).css('display', 'none');
    });
    t.previewItems.each(function() {
      $(this).removeClass('Selected'); 
    });
    $('#photo-item-' + k).css('display', 'block');
    $('#preview-i-' + k).addClass('Selected');
  }
};
















