﻿$(document).ready(function () {

    // Add tooltips for Pipeline
    $('area[class$="tooltip"]').each(function () {
		var $tipClass = $(this).attr('class');
		var $content = String($('#tooltip-holder span.'+$tipClass).html());
		
        $(this).qtip({
            content: $content
                , style: "blue"
        });
    });

    // Add tooltips for glossary
    $('a.tooltip-hcp').qtip({
        content: "<h5>Healthcare Professionals / Prescribers (HCP)</h5><p style='margin-bottom: 5px;'>An HCP is any individual who has the authority to prescribe medications.  This may include doctors (M.D. or D.O.), nurse practitioners or physician assistants.  The prescribing authority granted to healthcare professionals differs by state.</p>"
        ,style: "blue"
    });
    $('a.tooltip-rems').qtip({
        content: "<h5>REMS and RiskMAPs</h5><p style='margin-bottom: 5px;'>Cephalon works with the FDA to identify systems, processes and communications tools that will help educate patients and HCPs about the risks and benefits of our medications.  For this purpose, we will continue to create Risk Evaluation and Mitigation Strategies (REMS) and Risk Minimization Action Plans (RiskMAPS) for certain medications.  A REMS or a RiskMAP can be as basic as a medication guide or as complex as a multistep program which could include patient registries.</p>"
        ,style: "blue"
    });
    $('a.tooltip-phrma').qtip({
        content: "<h5>PhRMA Code</h5><p style='margin-bottom: 5px;'>This code was developed by the Pharmaceutical Research and Manufacturers of America (PhRMA).  The code aims to ensure that when manufacturers interact with healthcare professionals, these interactions adhere to the highest ethical standards and are designed to benefit patients and enhance the practice of medicine.  Cephalon adheres to the guidelines specified in the updated and strengthened code that PhRMA adopted in January 2009.</p>"
        ,style: "blue"
    });
    $('a.tooltip-consulting').qtip({
        content: "<h5>Advising / Consulting</h5><p style='margin-bottom: 5px;'>Physicians provide Cephalon with advice and expertise which are essential to developing new medications that more effectively address the needs of patients and the healthcare community.  Among many other activities, physicians advise us on the unmet needs they see in their clinical practices and alert us to potential new benefits and side effects they observe once they start using our approved medications.  Physicians will be compensated at Fair Market Value for their activities.</p>"
        , style: "blue"
    });
    $('a.tooltip-cme').qtip({
        content: "<h5>Continuing Medical Education (CME)</h5><p style='margin-bottom: 5px;'>a specific form of continuing education (CE) that helps those in the medical field maintain their competence and incorporate new knowledge to improve quality medical care for patients and their communities. These activities may take place as live events, written publications, online programs, audio, video, or other electronic media. In the United States, many states require CME for medical professionals to maintain their licenses.  <a href='http://www.accme.org/' target='_blank'>The Accreditation Council for Continuing Medical Education (ACCME)</a> sets the standards for the accreditation of all providers of CME activities.</p>"
        , style: "blue"
    });
    $('a.tooltip-cia').qtip({
        content: "<h5>Corporate Integrity Agreement (CIA)</h5><p style='margin-bottom: 5px;'>A CIA requires a company to maintain a compliance program designed to promote an ethical culture throughout the company and to detect and prevent misconduct by any employee.</p>"
        , style: "blue"
    });
    $('a.tooltip-fmv').qtip({
        content: "<h5>Fair Market Value</h5><p style='margin-bottom: 5px;'>Fair Market Value is the compensation paid to consultants, including HCPs, that is appropriate for the scope and type of services they provide and the amount of time they spend working on an activity.  To determine fair market value, Cephalon also considers what others in the marketplace would pay for the same service, along with a healthcare professional’s specialty and level of expertise.</p>"
        , style: "blue"
    });
    $('a.tooltip-orphan').qtip({
        content: "<h5>Orphan Drug</h5><p style='margin-bottom: 5px;'>This is a drug developed to treat diseases and conditions that affect relatively few people and are considered rare.  A rare disease affects less than 200,000 people in the United States.</p>"
        , style: "blue"
    });
    $('a.tooltip-speaker').qtip({
        content: "<h5>Speaker Programs</h5><p style='margin-bottom: 5px;'>These are programs sponsored and controlled by Cephalon in which contracted HCPs help educate and inform other HCPs about the benefits, risks and appropriate uses of Cephalon medicines.</p>"
        , style: "blue"
    });

});


