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

$(document).ready(function(){

//    $('#twitterLink').click(function(event){
//        window.open("http://www.twitter.com/crystalzoo", "Twitter de crystalZoo", "");
//    });
//
//    $('#twitterLink').hover(
//        function(){
//           $(this).css("cursor", "pointer")
//        },
//        function(){
//           $(this).css("cursor", "auto")
//        }
//    );

//    $(".container").everyTime(100, "container", function(){
//        $(this).center();
//    })
});


