/**
 * Copyright (C) 2009 Reactor SA
 *
 * V 1.0
 */


    jQuery(document).ready(function () {
        var a =  {
            style: {
                width: 65,
                textAlign: 'center',
                background: '#333',
                padding: 0,
                color: 'white',
                tip: {
                    corner: 'bottomLeft',
                    size: {
                        x: 8,
                        y: 4
                    }
                },
                border: {
                    width: 2,
                    radius: 4,
                    color: '#333'
                }
            },
            position: {
                adjust: {
                    x: -10,
                    y: -40
                }
            }
        };
        
        jQuery('.more img').qtip(a);
        jQuery('a.more').qtip(a);
        b = a;
        b.position.adjust.x = -6;
        b.position.adjust.y = -36;
        
        jQuery('.net a').qtip(b);
        
        
    });

