$(document).ready(function() {
                                                $(".qTip").each(function() {
                                                            $(this).qtip({
                                                                        content: $(this).attr('rel'),
                                                                        show: 'mouseover',
                                                                        hide: 'mouseout',
                                                                        tip: 'bottomLeft',
                                                                        position: {
                                                                                    corner: {
                                                                                                target: 'topRight',
                                                                                                tooltip: 'bottomLeft'
                                                                                    }
                                                                        }, 
                                                                        style: { 
                                                                                    width: 275,
                                                                                    padding: 5,
                                                                                    background: '#000',
                                                                                    color: 'white',
                                                                                    textAlign: 'center',
                                                                                    border: {
                                                                                                width: 7,
                                                                                                radius: 5,
                                                                                                color: '#000'
                                                                                    },
                                                                                    tip: 'bottomLeft',
                                                                                    name: 'dark' // Inherit the rest of the attributes from the preset dark style
                                                                        }
                                                            });
                                                });
                                    });
