// Create the tooltips only on document load
                $(document).ready(function()
                {

                        // Match all link elements with href attributes within the content div
                        $('#item2 a[href][title]').qtip(
                        {                               content: {text: false},
                                                        position: {
                                                                corner: {
                                                                        target: 'topMiddle',
                                                                        tooltip: 'bottomLeft'
                                                                }
                                                        },
                                                        style: {
                                                                background: '#C2D3E7',
                                                                color: '#4B5E77',
                                                                border: {
                                                                        width: 1,
                                                                        radius: 10,
                                                                        color: '#C2D3E7'
                                                                        },
                                                                tip:'bottomLeft',
                                                                name: 'blue'
                                                        }

                        });


                        $('#item3 a[href][title]').qtip(
                        {                              content: {text: false},
                                                        position: {
                                                                corner: {
                                                                        target: 'topMiddle',
                                                                        tooltip: 'bottomLeft'
                                                                }
                                                        },
                                                        style: {
                                                                background: '#C2D3E7',
                                                                color: '#4B5E77',
                                                                border: {
                                                                        width: 1,
                                                                        radius: 10,
                                                                        color: '#C2D3E7'
                                                                        },
                                                                tip:'bottomLeft',
                                                                name: 'blue'
                                                        }
		        });

                        $('#item4 a[href][title]').qtip(
                        {                              content: {text: false},
                                                        position: {
                                                                corner: {
                                                                        target: 'topMiddle',
                                                                        tooltip: 'bottomLeft'
                                                                }
                                                        },
                                                        style: {
                                                                background: '#C2D3E7',
                                                                color: '#4B5E77',
                                                                border: {
                                                                        width: 1,
                                                                        radius: 10,
                                                                        color: '#C2D3E7'
                                                                        },
                                                                tip:'bottomLeft',
                                                                name: 'blue'
                                                        }
                        });

                        $('#item5 a[href][title]').qtip(
                        {                              content: {text: false},
                                                        position: {
                                                                corner: {
                                                                        target: 'topMiddle',
                                                                        tooltip: 'bottomLeft'
                                                                }
                                                        },
                                                        style: {
                                                                background: '#C2D3E7',
                                                                color: '#4B5E77',
                                                                border: {
                                                                        width: 1,
                                                                        radius: 10,
                                                                        color: '#C2D3E7'
                                                                        },
                                                                tip:'bottomLeft',
                                                                name: 'blue'
                                                        }
                        });


                });
	


