function home_link_mouse_over(obj)
{
    var i;
    var ds;
    var myDate = new Date;
    var id = obj.id;
    var str = '';

    //
    // Button animation.
    //
    for (var i=3; i<=15; i++)
    {
        obj.style.paddingBottom = i+'px';
    }
    
    obj.style.marginTop = '-2px';
    
    //
    // Set content.
    //
    if (id == '1')
    {
        str += '<h2>High Payout Scheme &amp; ROI</h2>';
        str += '<p>Paid Promptly and via <br /> Numerous Convenient Payment Methods</p>';
    }
    
    else if (id == '2')
    {
        str += '<h2>Promote 10PIPS Profitably</h2>';
        str += '<p>Utilize both Paid &amp; Organic Methods <br /> to Efficiently Capture Traffic</p>';
    }
    
    
    else if (id == '3')
    {
        str += '<h2>A Truly Global Marketing &amp; Trading Platform</h2>';
        str += '<p>Multinational Forex Demand is Booming <br /> &amp; 10PIPS Offers a Variety of Highly Converting Languages</p>';
    }
    
    
    else if (id == '4')
    {
        str += '<h2>A Varied Commission Structure</h2>';
        str += '<p>To Increase Your Earnings Potential, Your Compensation is <br /> Highly Flexible, from new entrants to Super Affiliates</p>';
    }
    
    else if (id == '5')
    {
        str += '<h2>An Advanced Accurate Tracking System</h2>';
        str += '<p>Enables You to Track All Marketing Channels and <br /> Assess Their Effectiveness</p>';
    }
    
    else if (id == '6')
    {
        str += '<h2>Multitude of Highly Converting Creatives</h2>';
        str += '<p>You will be Provided ALL of the Necessary <br /> Marketing Tools (Graphics, Text, Content)</p>';
    }
    
    //
    // Display content.
    //
    $("#HomeMaintext").html(str);
}

function home_link_mouse_out(obj)
{
    for (var i=15; i>2; i--)
    {
        obj.style.paddingBottom = i+'px';
    }
    
    obj.style.marginTop = '10px';
    
}
