﻿


function Search() {
    var terms = document.getElementById('ctl00_txtSearch').value;
    if (terms.length > 0) {
        window.open('search.aspx?qaw=' + terms, '_self', '');
    }

    return false;
}



jQuery.noConflict()

function expstickybar(usersetting) {
    var setting = jQuery.extend({ position: 'bottom', peekamount: 30, revealtype: 'mouseover', speed: 200 }, usersetting)
    var thisbar = this
    var cssfixedsupport = !document.all || document.all && document.compatMode == "CSS1Compat" && window.XMLHttpRequest //check for CSS fixed support
    if (!cssfixedsupport || window.opera)
        return
    jQuery(function ($) { //on document.ready
        if (setting.externalcontent) {
            thisbar.$ajaxstickydiv = $('<div id="ajaxstickydiv_' + setting.id + '"></div>').appendTo(document.body) //create blank div to house sticky bar DIV
            thisbar.loadcontent($, setting)
        }
        else
            thisbar.init($, setting)
    })
}

expstickybar.prototype = {

    loadcontent: function ($, setting) {
        var thisbar = this
        var ajaxfriendlyurl = setting.externalcontent.replace(/^http:\/\/[^\/]+\//i, "http://" + window.location.hostname + "/")
        $.ajax({
            url: ajaxfriendlyurl, //path to external content
            async: true,
            error: function (ajaxrequest) {
                alert('Error fetching Ajax content.<br />Server Response: ' + ajaxrequest.responseText)
            },
            success: function (content) {
                thisbar.$ajaxstickydiv.html(content)
                thisbar.init($, setting)
            }
        })

    },

    showhide: function (keyword, anim) {
        var thisbar = this, $ = jQuery
        var finalpx = (keyword == "show") ? 0 : -(this.height - this.setting.peekamount)
        var positioncss = (this.setting.position == "bottom") ? { bottom: finalpx} : { top: finalpx }
        this.$stickybar.stop().animate(positioncss, (anim) ? this.setting.speed : 0, function () {
            thisbar.$indicators.each(function () {
                var $indicator = $(this)
                $indicator.attr('src', (thisbar.currentstate == "show") ? $indicator.attr('data-closeimage') : $indicator.attr('data-openimage'))
            })
        })

        thisbar.currentstate = keyword
    },

    toggle: function () {
        var state = (this.currentstate == "show") ? "hide" : "show"
        this.showhide(state, true)
        jQuery.cookie("showhidebar", state)
    },

    init: function ($, setting) {
        var thisbar = this
        this.$stickybar = $('#' + setting.id).css('visibility', 'visible')
        this.height = this.$stickybar.outerHeight()
        this.currentstate = "show"
        if ($.cookie("showhidebar") != null)
          this.currentstate = $.cookie("showhidebar");
        setting.peekamount = Math.min(this.height, setting.peekamount)
        this.setting = setting
        if (setting.revealtype == "mouseover")
            this.$stickybar.bind("mouseenter mouseleave", function (e) {
                thisbar.showhide((e.type == "mouseenter") ? "show" : "hide", true)
            })
        this.$indicators = this.$stickybar.find('img[data-openimage]') //find images within bar with data-openimage attribute
        this.$stickybar.find('a[href=#togglebar]').click(function () { //find links within bar with href=#togglebar and assign toggle behavior to them
            thisbar.toggle()
            return false
        })
        setTimeout(function () {
            thisbar.height = thisbar.$stickybar.outerHeight() //refetch height of bar after 1 second (last change to properly get height of sticky bar)
        }, 1000)
        this.showhide(this.currentstate)
    }
}


/////////////Initialization code://///////////////////////////

//Usage: var unqiuevar=new expstickybar(setting)

var mystickybar = new expstickybar({
    id: "stickybar", //id of sticky bar DIV
    position: 'bottom', //'top' or 'bottom'
    revealtype: 'manual', //'mouseover' or 'manual'
    peekamount: 7, //number of pixels to reveal when sticky bar is closed
    externalcontent: '', //path to sticky bar content file on your server, or "" if content is defined inline on the page
    speed: 400 //duration of animation (in millisecs)
})



function addToFavorites(title, url) {
    if (window.sidebar) {
        window.sidebar.addPanel(title, url, "");
    }
    else if (document.all) {
        window.external.AddFavorite(url, title);
    }
    else {
        alert('This feature is not available in the current browser.');
    }
}

