﻿// This will show the wide screen faq question information
function showWideInfo(e) {
    var txt;

    $('#wideMsg').css({'display':'inline','left':e.pageX+15,'top':e.pageY-15});

    var s = $(e.target).text();     // Get the text from the mouseover text object, which is an anchor
    $('#wideMsg h1').text(s);       // Make the header text as the object text above

    // I need to create the content of the information bubble now
    s=s.toUpperCase();
    if (s == "WHY DO I NEED TO REGISTER?") {
        txt = "By registering you will be able to take advantage of our great voucher offers which will save you money throughout the year.<br/><br/>Also by registering you will get our monthly newsletter which will keep you upto date on events &amp; our investment in childcare.";
        $('#wideMsg').css({'width':'400px'});
    }

    if (s == "WHERE ARE OUR NURSERIES BASED?") {
        txt = "Our nurseries cover the northwest of England.<br/><br/>We have quality nurseries on the Wirral, Liverpool, Warrington &amp; Preston.<br/><br/>If you would like to visit any of our nurseries please do not hesitate to contact us and we will be happy to show you round. You can use the contact us box to the far right of the display &amp; we will contact you within the next day.<br/><br/>You can also get further information on each of our nurseries by going to the <b>'The group'</b> menu option on our main website menu.";
        $('#wideMsg').css({ 'width': '600px' });
    }

    if (s == "HOW CAN I ASK A QUICK QUESTION?") {
        txt = "If you would like to ask a quick question or even have a chat about our nurseries please donot hesitate to use the telephone numbers which are located with the detailed descriptions of each nursery under <b>'The group'</b> mainmenu option.<br/><br/>If you would like to <b>email us</b> please feel free to put your question in an email and simply send it to the email at the nursery you would like your answer from.<br/><br/>May be the easiest way is to let us call you! just fill in the tiny contact me box to the far right of the page &amp; we will contact you within 24 hours.";
        $('#wideMsg').css({ 'width': '500px' });
    }

    if (s == "CAN I VISIT A NURSERY?") {
        txt = "<b>YES, we would love you to visit our nurseries!</b><br/><br/>We are extremely proud of our nurseries &amp; we would like nothing more than you to see what we do and how we do it.<br/><br/>Why not use the contact me box to the right of the page. Once you have filled in the tiny form we will contact you and you can arrange with us a time which is convienient for yourself.";
        $('#wideMsg').css({ 'width': '500px' });
    }

    if (s == "DO YOU ACCEPT CHILDCARE VOUCHERS?") {
        txt = "Yes, we accept all Government childcare vouchers.<br/><br/>Why not give us a quick call or get us to contact you &amp; have a chat about vouchers or anything else about our nurseries.";
        $('#wideMsg').css({ 'width': '500px' });
    }

    $('#wideMsg p').html(txt);
}


function hideWideInfo() {

    $('#wideMsg').css({ 'display': 'none' });



}
