/*
 *
 * Center Resizme 0.1
 * Version 0.1
 * @requires jQuery v1.3.0
 *
 * Copyright (c) 2011 Milos Matic
 * www.milosmatic.com
 * Licensed under the GPL licenses:
 * http://www.gnu.org/licenses/gpl.html
 *
 */
jQuery.fn.resizeme = function(init) {

    var object = this;

    $(window).bind('resize', function() {
        if($(window).width() < 1300){
            $(object).css("width", 1055);
        }else{
            $(object).css("width", 1200);
        }
    });

    $(window).trigger('resize');
}
