// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(function () {
 
    jQuery(window).resize(function () {
        jQuery('.alpha').css({
            position: 'absolute',
            display: 'inline',//mostramos el elemento
            left: (jQuery(window).width() - jQuery('.alpha').outerWidth()) / 2,
            top: (jQuery(window).height() - jQuery('.alpha').outerHeight()) / 2
        });
    });
    // Corremos nuestra nueva funcion
    jQuery(window).resize();
});
