// Definiere j als neues Alias zum Aufruf von jQuery statt $('$SELECTOR')
var j = jQuery.noConflict();	




jQuery(document).ready(function(){



    //tooltip fÃ¼r images-ausstattung
    j(".icon img").jHelperTip({
        topOff: 15,
        leftOff: -180,
        trigger: "hover",  
        source: "attribute",  
        attrName: "name",  
        opacity: 0.8,  
        autoClose:true}
    );
    j("#certificate img").jHelperTip({
        topOff: 15,
        leftOff: 0,
        trigger: "hover",  
        source: "attribute",  
        attrName: "alt",  
        opacity: 0.8,  
        autoClose:true}
    );    

    // Formularcheck zu Einblenden deer Kliniken
    var n = j("#klinikinteresse:checked").length;
    if (n==0) { j('#klinikbetreff').css("display","none")}
    j('#klinikinteresse').click(function()
    {
       
        if (n==1) {
            j('#klinikbetreff').hide("slow");
            n=0;
        }else{
            j('#klinikbetreff').show("slow");
            n=1;
        }            
    });
    var p = j("#Patient:checked").length;
    if (p==0) { j('#klinikaufenthalt').css("display","none")}
    j('#Patient').click(function()
    {
       
        if (p==1) {
            j('#klinikaufenthalt').hide("slow");
            p=0;
        }else{
            j('#klinikaufenthalt').show("slow");
            p=1;
        }            
    });


	//button "nach oben"
    j('.gotop').click(
    function(){
        j('#top_margin').ScrollTo(1200);
        return false;
    });
    
    j('.ankerSource').click(
		function(){
			var anchor = j(this).attr("name");
			j("#" + anchor).ScrollTo(1200);
			return false;
		}
	);
        
    j('#f_search_label').text('Suche');
    j('#f_search').focus( function() {
    	j('#f_search_label').text('');
    });

    
    j('#carousel').addClass('jcarousel-list');
    j('#carousel li').addClass('jcarousel-item');

    //alle br werden durch ein paragraph ersetzt
    var rtag = "<p class='not'>" //<div class='printtest'></div>
    j(".c100 p br").replaceWith(rtag);
    j(".c100:first p p:last").removeClass("not").addClass('space');
    jQuery.each(jQuery.browser, function(i, val) {
      if(i=="msie" && jQuery.browser.version.substr(0,3)=="6.0")
        // alert(jQuery.browser.version)
            j("p.copy").append("<br style='clear:left' />");
    });
    

// Quickfinder auf den Channelhomes    
    j('div.c_quickfind').css({'display': 'block'});
	j('#c_quickfind').accordion({
		event: 'click',
		active: -1,
		alwaysOpen: false,
		fillSpace: false,
		clearStyle: true,
		autoHeight: false,
		header: 'h4.head'
	});

	j('.c_quickfind_sub').accordion({
		event: 'click',
		active: -1,
		alwaysOpen: false,
		fillSpace: false,
		clearStyle: true,
		autoHeight: false,
		header: 'h4.head'
	});	
    j('h3.trigger a').html('<img src="/css_js/ptp/chrome/btn.accordeon.dn.jpg">');
	j('h3.trigger a').click(
		function() {
			var target = $(this).attr('href');
			var status =  $(this).html();
			j(target).toggle();
			if (status === '<img src="/css_js/ptp/chrome/btn.accordeon.dn.jpg">') {
				$(this).html('<img src="/css_js/ptp/chrome/btn.accordeon.up.jpg">');
			} else {
				$(this).html('<img src="/css_js/ptp/chrome/btn.accordeon.dn.jpg">');
			} ;
			return false;
		}
	);
// Quickfinder auf den Channelhomes  ENDE

/**	
@alwaysOpen: true, wenn immer ein Element offen sein soll;
@active: DOM-Referenz zum geÃ¶ffneten Element (oder false)
@autoHeight: true, wenn HÃ¶he des hÃ¶chsten Elementes fÃ¼r alle akkordeon Elemente gilt;
@clearStyle: true, wenn alle height/overflow styles entfernt werden sollen; erlaubt dynamische HÃ¶henanpassung; benÃ¶tigt autoHeight: false
*/
	j('#kontakt_acc').accordion({
		event: 'click',
		alwaysOpen: false,
		active: -1,
		clearStyle: true,
		header: 'dt'
	});

/** Abfrage nach einer Klasse 'active' innerhalb des Akkordeons; wenn ein dt Element diese Klasse besitzt, wird es aktiviert (dd sichtbar). Ansonsten sind alle dd's geschlossen (default) */
	if (j('#kontakt_acc dt.active')) {
		j('#kontakt_acc').accordion('activate', j('#kontakt_acc dt.active'));
	};
	
	j('#kontakt_acc dt').css({
		'cursor': 'pointer'
		});
		adjustPadding('#menu_t');

///////////////////NUR IE - Start	:;
	if (j.browser.msie) {
// Send this to ie_patch.css
//Ermittle HÃ¶he der A-Elemente mit Submenu
		var elem = j('#menu_t li.sub a').eq(0);
		var height = elem.outerHeight();
		var height1 = elem.outerHeight(true);
		
// Korrektur des Abstandes zum Untermenu erfordert Unterscheidung zwischen IE6 und IE7.
		var ieversion = j.browser.version;
		var ieversion_arr = ieversion.split('.');
		var ieAbstand  = (ieversion_arr[0]==="6")?3:0;
		j('#kkh,#aut,#medizin,#therapie,#gruppe').css({'position': 'absolute', 'left': 5, 'top': height+ieAbstand})
        j('#menu_t .menu_t_sub').hide();
		    j('#menu_t li.sub').hover(
            function() {
                j('#'+j(this).attr('name')).css({'display': 'block'});
/* Korrektur fÃ¼r den "Disappearing List-Background Bug":
relativ positionierte Boxen Ã¼bereinander angeordnet verlieren Hintergrund;
FÃ¼r den HoveR-Zustand temporÃ¤r auf static setzen. */
                j('#head_wrap,#col_left,#col_center').css({'position': 'static'});
                j('#login').css({'top': '66px'});
            },
            function() {
              j('#login').show();
              j('#'+j(this).attr('name')).css({'display': 'none'});
              j('#head_wrap,#col_left,#col_center').css({'position': 'relative'});
              j('#login').css({'top': '-5px'});
            }
          );
        j('#OnPageGalleryList a.selected').css({'color': '#f60', 'text-decoration': 'underline'});
        j('#foot div.related ul').each(function() {
            j(this).children('li').each(function(i) {
                if ( i != 0) {
                    j(this).prepend('- ');
                }
            })
        })
        j('.ui-accordion dt').hover(
        	function() {
                        j(this).css({
                            'background-color': '#e9e9e9'
                            });
        	},
        	function() {
                        j(this).css({
                            'background-color': '#fff'
                            });
        	}
        );
        if (ieversion_arr[0]!="8") {
        j('div#query p').each(function(i) {
                j(this).children('a').prepend('»&nbsp;');
            });        
        j('#col_right li').each(function(i) {
                j(this).children('a').prepend('»&nbsp;&nbsp;');
            });
        }
    };
///////////////////NUR IE - ENDE	:;
    

        j('#menu_t li.sub').hover(
        	function () {
        		j(this).addClass('over');
        	},
        	function () {
        		j(this).removeClass('over');
        	}
        );
        j('.c_quickfind_sub ul li').each(function(i) {
                j(this).children('a').prepend('» ');
        });
        j('.khbnav li').each(function(i) {
                j(this).children('a').prepend('|&nbsp;&nbsp;»&nbsp;&nbsp;');
        });
        
        j('div#query p span.button').children('a').prepend('»&nbsp;');
});

function adjustPadding(obj) {
    var tmp = [];

var obj_top = j(obj).offset().top;
var obj_left = j(obj).offset().left;
var obj_width = j(obj).outerWidth();
var obj_width_calc = 0;
var firstLevel = j(obj+' li.level1');

firstLevel.each( function(i) {
        var t_top = j(this).offset().top;
        var t_left = j(this).offset().left ;
        var t_width = j(this).outerWidth({margin: true});
//        var target = j(this).find('a');
        if(t_top >= 0) {
            obj_width_calc += t_width;
            if( i != 0) {
                tmp.push(j(this));
            }
        }        
    });
    
    var diff = (760 - obj_width_calc);
    var delta = Math.ceil((760 - obj_width_calc)/tmp.length/2);
    addPadding(tmp, diff, delta);
};

function addPadding(array, diff, delta) {
var n = array.length;
var set = array;
while ( set !== [] && set.length > 0) {
    var current = set.pop();
    var target= j(current).children('a');
    var pad_left = parseFloat(j(target).css('padding-left'));
    var pad_right = parseFloat(j(target).css('padding-right'));
    j(current).css({'border-bottom-width': 0});
    if (set.length >= 1) {
        j(target).css('padding-left', pad_left + delta );
        j(target).css('padding-right', pad_right + delta );
    } else {
        j(target).css('padding-left', pad_left + Math.floor(diff/2) );
        j(target).css('padding-right', pad_right + Math.floor(diff/2) + Math.round((diff/2) - Math.floor(diff/2)) );
    }
    diff = diff - (2*delta);
    }
};



//////////////////// function fÃ¼r den "nach oben" - scroller ////////////////////////////////////////////////////////////////////////////
jQuery.getPos = function (e)
{
    var l = 0;
    var t  = 0;
    var w = jQuery.intval(jQuery.css(e,'width'));
    var h = jQuery.intval(jQuery.css(e,'height'));
    var wb = e.offsetWidth;
    var hb = e.offsetHeight;
    while (e.offsetParent){
        l += e.offsetLeft + (e.currentStyle?jQuery.intval(e.currentStyle.borderLeftWidth):0);
        t += e.offsetTop  + (e.currentStyle?jQuery.intval(e.currentStyle.borderTopWidth):0);
        e = e.offsetParent;
    }
    l += e.offsetLeft + (e.currentStyle?jQuery.intval(e.currentStyle.borderLeftWidth):0);
    t  += e.offsetTop  + (e.currentStyle?jQuery.intval(e.currentStyle.borderTopWidth):0);
    return {x:l, y:t, w:w, h:h, wb:wb, hb:hb};
};
jQuery.getClient = function(e)
{
    if (e) {
        w = e.clientWidth;
        h = e.clientHeight;
    } else {
        w = (window.innerWidth) ? window.innerWidth : (document.documentElement && document.documentElement.clientWidth) ? document.documentElement.clientWidth : document.body.offsetWidth;
        h = (window.innerHeight) ? window.innerHeight : (document.documentElement && document.documentElement.clientHeight) ? document.documentElement.clientHeight : document.body.offsetHeight;
    }
    return {w:w,h:h};
};
jQuery.getScroll = function (e) 
{
    if (e) {
        t = e.scrollTop;
        l = e.scrollLeft;
        w = e.scrollWidth;
        h = e.scrollHeight;
    } else  {
        if (document.documentElement && document.documentElement.scrollTop) {
            t = document.documentElement.scrollTop;
            l = document.documentElement.scrollLeft;
            w = document.documentElement.scrollWidth;
            h = document.documentElement.scrollHeight;
        } else if (document.body) {
            t = document.body.scrollTop;
            l = document.body.scrollLeft;
            w = document.body.scrollWidth;
            h = document.body.scrollHeight;
        }
    }
    return { t: t, l: l, w: w, h: h };
};

jQuery.intval = function (v)
{
    v = parseInt(v);
    return isNaN(v) ? 0 : v;
};

jQuery.fn.ScrollTo = function(s) {
    o = jQuery.speed(s);
    return this.each(function(){
        new jQuery.fx.ScrollTo(this, o);
    });
};

jQuery.fx.ScrollTo = function (e, o)
{
    var z = this;
    z.o = o;
    z.e = e;
    z.p = jQuery.getPos(e);
    z.s = jQuery.getScroll();
    z.clear = function(){clearInterval(z.timer);z.timer=null};
    z.t=(new Date).getTime();
    z.step = function(){
        var t = (new Date).getTime();
        var p = (t - z.t) / z.o.duration;
        if (t >= z.o.duration+z.t) {
            z.clear();
            setTimeout(function(){z.scroll(z.p.y, z.p.x)},13);
        } else {
            st = ((-Math.cos(p*Math.PI)/2) + 0.5) * (z.p.y-z.s.t) + z.s.t;
            sl = ((-Math.cos(p*Math.PI)/2) + 0.5) * (z.p.x-z.s.l) + z.s.l;
            z.scroll(st, sl);
        }
    };
    z.scroll = function (t, l){window.scrollTo(l, t)};
    z.timer=setInterval(function(){z.step();},13);
};

/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;





//////////////////// function fÃ¼r den TOOLTIP ////////////////////////////////////////////////////////////////////////////

/* Copyright (c) 2008 Kean Loong Tan http://www.gimiti.com/kltan
 * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * Copyright notice and license must remain intact for legal use
 * jHelpertip
 * Version: 1.0 (Jun 2, 2008)
 * Requires: jQuery 1.2+
 * http://www.gimiti.com/kltan/demo/jHelperTip/jquery.jHelperTip.1.0.js 
 */
(function($) {
          
    j.fn.jHelperTip = function(options) {
        // merge users option with default options
        var opts = j.extend({}, j.fn.jHelperTip.defaults, options);
        
        // default actions
        // create a ttC is not found
        if (j(opts.ttC).length == 0)
            j('<div id="'+opts.ttC.slice(1)+'"></div>').appendTo("body");
        
        // create a dC is not found
        if (j(opts.dC).length == 0)
            j('<div id="'+opts.dC.slice(1)+'"></div>').appendTo("body");
        
        if (j(opts.aC).length == 0)
            j('<div id="'+opts.aC.slice(1)+'"></div>').appendTo("body");

        
        // initialize our tooltip and our data container and also the close box
        j(opts.ttC).add(opts.aC).css({
            position: "absolute",
            display: "inline"
        }).hide();
        
        j(opts.dC).hide();
        
        // close the tooltip box
        var closeBox = function(){
            if (opts.source == "attribute")
                j(opts.aC).hide().empty();
            else
                j(opts.ttC).hide().empty();
        };
        
        j(".jHelperTipClose").bind("click", closeBox);
        j(opts.ttC).bind("mouseover",function(){
            j(opts.ttC).show();
            return false;
        });

        // the sources of getting data
        var getData = function(obj,e){
            if (opts.source == "ajax") {
                getPosition(e);
                j(opts.ttC).html('<div><img src="'+opts.loadingImg+'"/> '+opts.loadingText+'</div>').show();
                
                j.ajax({
                    type: opts.type,
                    url: opts.url,
                    data: opts.data,
                    success: function(msg){
                        j(opts.ttC).html(msg);
                        // reInitialize the close controller
                        j(".jHelperTipClose").unbind("click", closeBox); 
                        j(".jHelperTipClose").bind("click", closeBox);
                    }
                });
            }
            
            else if (opts.source == "container"){
                j(opts.ttC).show().empty();
                j(opts.dC).clone(true).show().appendTo(opts.ttC);
            }
            
            if (opts.source == "attribute"){
                j(opts.aC).html(j(obj).attr(opts.attrName));
            }
        };
        
        // used to position the tooltip
        var getPosition = function (e){
            var top = e.pageY+opts.topOff;
            var left = e.pageX+opts.leftOff;
            
            if (opts.source == "attribute"){
                j(opts.aC).css({
                    top: top,
                    left: left,
                    opacity: opts.opacity
                }).show();
            }
            else {
                j(opts.ttC).css({
                    top: top,
                    left: left,
                    opacity: opts.opacity
                }).show();
            }
        };

        // just close tool tip when not needed usually trigger by anything outside out tooltip target
        if (opts.trigger == "hover") {
            j(this).bind("mouseover", function(e){
                e.preventDefault();
                getData(this, e);
                return false;
            });
            j(this).bind("mousemove", function(e){
                getPosition(e);
                return false;
            });
            
            j(this).bind("mouseout", function(e){
                if (opts.source == "attribute")
                    j(opts.aC).hide().empty();
                else
                    j(opts.ttC).hide().empty();
                return false;
            });
        }
        
        else if (opts.trigger == "click") {
            j(this).bind("click", function(e){
                getData(this, e);
                getPosition(e);
                j(document).bind("click", function(e){
                    if (opts.autoClose) {
                        if (opts.source == "attribute")
                            j(opts.aC).hide().empty();
                        else
                            j(opts.ttC).hide().empty();
                    }
                });
                
                return false;
            });

        }
    };
    
    j.fn.jHelperTip.defaults = {
        trigger: "click",
        topOff: 3,
        leftOff: 10,
        source: "container", /* attribute, container, ajax */
        attrName: '',
        ttC: "#jHelperTipContainer", /* tooltip Container*/
        dC: "#jHelperTipDataContainer", /* data Container */
        aC: "#jHelperTipAttrContainer", /* attr Container */
        opacity:  1.0,
        loadingImg: "ajax-loader.gif",
        loadingText: "Loading...",
        type: "GET", /* data can be inline or CSS selector */
        //url: '',
        //data: '',
        autoClose: true
    };
        
    
          

})(jQuery);

