﻿(function($){

$.fn.center = function(){

var element = this;

$(element).load(function(){

changeCss();

$(window).bind("resize", function(){
    changeCss();
});

function changeCss(){

   
    var windowWidth = $(window).width();
    
	if  (windowWidth > 1023){
	
    $(element).css({
	    
        "width" : (windowWidth - 340)/5/2 - 65,
        "height" : 1
    });
    };
};
});

};

})(jQuery);