jQuery.noConflict();

var soh = function($) {
	$.fn.toggleDataListInfoDisplay = function(options)
	{
		var defaults =
		{
			hoverClassName: "over",
			offClassName: "off",
			onClassName: "on"
		};
		var settings = $.extend({}, defaults, options);
		
		return this.each(function(){
			$("dd p.hide", this).hide(); // Hide Info
			
			// Add show/hide functionality
			$("dd p.show", this).click(function(){
				$(this).hide();
				$(this).siblings("p.hide").show();
			});
			
			$("dd p.hide", this).click(function(){
				$(this).hide();
				$(this).siblings("p.show").show();
			});
		});
	};
}(jQuery);


/*
 *  methods to run on DOM ready
 */
jQuery(document).ready(function() {
	jQuery("#faqs dl.toggle").toggleDataListInfoDisplay();
});

/*
 *	detach all handlers
 */
jQuery(window).unload(function(){
    jQuery("*").unbind();
});

/**
 *  Global Calls
 */
(function()
{    
    linkExternal = function(obj, linkName)
    {
        omnitureTag(obj, 'e', linkName);
    };

    linkCustom = function(obj, linkName)
    {
        omnitureTag(obj, 'o', linkName);
    }

    linkDownload = function(obj, linkName)
    {
        omnitureTag(obj, 'd', linkName);
    }
    
    omnitureTag = function(obj, type, linkName)
    {
        var s = s_gi(s_account);
        s.linkTrackVars = 'None';
        s.linkTrackEvents = 'None';
        var lt = (obj.href != null) ? s.lt(obj.href) : '';
        if (lt == '') s.tl(obj, type, linkName);
    };
})();

// The TrackTag variable refers to the location of the
// base action tag. In the actual implementation this 
// action tag will point to a 1x1 pixel GIF.

var TrackTag = 'http://switch.atdmt.com/action/';

function GetActionTag(URL){ 
  document.action_tag.src = TrackTag + URL;
}

