/// <reference path="jquery-1.2.6-vsdoc.js"/>

$(function() {

    $('#news').css({ 'display': 'block' });
    $('#news').newsticker();
   
    $('.innerContainer').corner({
        tl: { radius: 15 },
        tr: false,
        bl: false,
        br: { radius: 15 },
        antiAlias: true,
        autoPad: true,
        validTags: ["div"]
    });

    $('.stickyOrange').attr("href", "cluetips/webstore.htm");
    $('.stickyOrange').attr("rel", "cluetips/webstore.htm");
    $('.stickyBlue').attr("href", "cluetips/deluxe.htm");
    $('.stickyBlue').attr("rel", "cluetips/deluxe.htm");
    $('.stickyGreen').attr("href", "cluetips/premium.htm");
    $('.stickyGreen').attr("rel", "cluetips/premium.htm");
    
    $('.stickyOrange').cluetip({ cluetipClass: 'defaultOrange', sticky: true, closePosition: 'title', arrows: true, width: '500px', height: '260px' });
    $('.stickyBlue').cluetip({ cluetipClass: 'defaultBlue', sticky: true, closePosition: 'title', arrows: true, width: '520px', height: '400px' });
    $('.stickyGreen').cluetip({ cluetipClass: 'defaultGreen', sticky: true, closePosition: 'title', arrows: true, width: '520px', height: '400px' });

});