﻿//the functions in this file require the jQuery javascript library
jQuery.noConflict();

jQuery(document).ready(function()
{
	
});

function SwapImage(senderElem, newImageSrc)
{
	jQuery(senderElem).attr('src', newImageSrc);
}

function ClearSearch()
{
    if (document.form1.tbSearchText.value == "Site Search")
        document.form1.tbSearchText.value = "";
}

function PopulateSearch()
{
    if (document.form1.tbSearchText.value == "")
        document.form1.tbSearchText.value = "Site Search";
}

function ClearMSDSSearch()
{
    if (document.form1.content_0_mgkMSDSLocator_tbSearchText.value == "Label/MSDS Locator")
        document.form1.content_0_mgkMSDSLocator_tbSearchText.value = "";
}

function PopulateMSDSSearch()
{
    if (document.form1.content_0_mgkMSDSLocator_tbSearchText.value == "")
        document.form1.content_0_mgkMSDSLocator_tbSearchText.value = "Label/MSDS Locator";
}
