/* 
 * A VARIUX INC. Sep 20, 2010
 * CREATED BY: JOHN ANDERSON
 */

jQuery.fn.jcenter = function ($w,$h) {
    this.css("position","absolute");
    this.css("top", ( $(window).height() - $h ) / 2 + $(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - $w ) / 2 + $(window).scrollLeft() + "px");
    return this;
}

$(function(){

    $(".variux-pop-link").click(function(e){

           e.preventDefault();

           var $dest    =   $(this).attr('href');
           
           window.open($dest,'Variux',"width=1024,height=768,scrollbars=1");


    });

});

