$(function () {
    
    // about
    $('.hl_about a[title]').qtip({
        position: { corner: {target: 'topRight', tooltip: 'leftBottom'}, adjust: {x:-50,y:80} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
    // services
    $('.hl_services a[title]').qtip({
        position: { corner: {target: 'topMiddle', tooltip: 'bottomMiddle'}, adjust: {x:0,y:0} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
    // weddings
    $('.hl_weddings a[title]').qtip({
        position: { corner: {target: 'bottomMiddle', tooltip: 'topRight'}, adjust: {x:-10,y:-20} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
    // snaps
    $('.hl_snaps a[title]').qtip({
        position: { corner: {target: 'topRight', tooltip: 'bottomLeft'}, adjust: {x:-70,y:50} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
    // links
    $('.hl_links a[title]').qtip({
        position: { corner: {target: 'topRight', tooltip: 'bottomLeft'}, adjust: {x:-70,y:50} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
    // contact
    $('.hl_contact a[title]').qtip({
        position: { corner: {target: 'topMiddle', tooltip: 'bottomRight'}, adjust: {x:0,y:0} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
    // blog
    $('.hl_blog a[title]').qtip({
        position: { corner: {target: 'leftTop', tooltip: 'rightBottom'}, adjust: {x:0,y:30} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })
    
     // twitter
    $('.hl_twitter a[title]').qtip({
        position: { corner: {target: 'topRight', tooltip: 'bottomLeft'}, adjust: {x:-40,y:30} },
        style: { name: 'light', color: '#990000', textAlign: 'center', border: { color: '#ffffff', width: 4, radius: 8 }, tip: true, width:{ max:'150'} }
    })



});

