/* 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 Onlyweb = {};
var App = {};


PhotoRibbon = newClass();
PhotoRibbon.prototype = {
  init: function() {
    var t = this;
    t.container = $("#mypolosa");
    window.onresize = function() {
      t.resize();
    };
    // Запускаем первый раз
    t.resize();
  },

  resize: function() {
    var t = this;
    t.container.css('width', $("body").width()-200);
  }
};




