﻿/*  
PRO-AUDIO FUNCTIONS
© Eonic Ltd 2010 - http://www.eonic.co.uk
Authors: Will Hancock 
*/

// jQuery exists function
jQuery.fn.exists = function() { return jQuery(this).length > 0; }

var autoCompletePath = '/ewcommon/feeds/generic/feed.ashx?contentSchema=product&mimeMajorType=text&mimeSubType=html&feedName=google&showRelated=false&pageId=0';
//var autoCompletePath = '/ewcommon/feeds/google/base.ashx';

$(document).ready(function() {

    /* Add Share Bookmarks to Detail pages */
    if ($(".detail").exists()) {
        $("div[class^='description']").each(function() {
            $(this).before('<a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=proaudio"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=proaudio"></script>');
        });
    }

    /* Search Bits */
    if ($(".mainSearchForm").exists()) {
        $("#ssManufacturer").autocomplete(autoCompletePath, {
            autoFill: false,
            mustMatch: true
        });
        $(".mainSearchForm").submit(function() {
            var manufacturerName = $("#ssManufacturer").val();
            var searchString = $(this).find("#searchString").val();
            searchString = searchString + ' | ' + manufacturerName;
            $(this).find("#searchString").val(searchString);
        });

    }

    // Calendar Tooltip 
    if ($(".calendarentry").exists()) {
        initialiseCalendarToolTip();
    }


});

function initialiseCalendarToolTip() {
    $(".calendarentry").tooltip({
        track: true,
        delay: 0,
        showURL: false,
        showBody: " - ",
        extraClass: "box"
    });
}
