﻿(function($){

$.fn.center = function(){

var element = this;



changeCss();

$(window).bind("resize", function(){
    changeCss();
});

function changeCss(){

    var divHeight = $(element).height();
    var divWidth = $(element).width();
    var windowWidth = $(window).width();
    var windowHeight = $(window).height();

    $(element).css({
        "position" : "absolute",
        "left" : windowWidth / 2 - divWidth / 2,
        "top" : windowHeight / 2 - divHeight / 2
    });
};


};

})(jQuery);