$(document).ready(function() {

    $('.home-col1 ul').before('<div id="bannerNav">').cycle({
        fx: 'fade',
        timeout: 3000,
        pager: '#bannerNav'
    });

    var searchbox = $("#header .form-text");
//    var enquiry1 = $(".enquiry .form-name");
//    var enquiry2 = $(".enquiry .form-email");
//    var enquiry3 = $(".enquiry .form-telephone");
//    var enquiry4 = $(".enquiry .form-enquiry");
    searchbox.focus(function() {
        if ($(this).attr("value") == "Search our site") $(this).attr("value", "");
        if ($(this).attr("value") != "Search our site") $(this).css("color", "#333333");
    });
    searchbox.blur(function() {
        if ($(this).attr("value") == "") $(this).attr("value", "Search our site");
        if ($(this).attr("value") == "Search our site") $(this).css("color", "#999999");
    });
//    enquiry1.focus(function() {
//        if ($(this).attr("value") == "Enter your name here") $(this).attr("value", "");
//        if ($(this).attr("value") != "Enter your name here") $(this).css("color", "#333333");
//    });
//    enquiry1.blur(function() {
//        if ($(this).attr("value") == "") $(this).attr("value", "Enter your name here");
//        if ($(this).attr("value") == "Enter your name here") $(this).css("color", "#999999");
//    });
//    enquiry2.focus(function() {
//        if ($(this).attr("value") == "Enter your email here") $(this).attr("value", "");
//        if ($(this).attr("value") != "Enter your email here") $(this).css("color", "#333333");
//    });
//    enquiry2.blur(function() {
//        if ($(this).attr("value") == "") $(this).attr("value", "Enter your email here");
//        if ($(this).attr("value") == "Enter your email here") $(this).css("color", "#999999");
//    });
//    enquiry3.focus(function() {
//        if ($(this).attr("value") == "Enter your telephone here") $(this).attr("value", "");
//        if ($(this).attr("value") != "Enter your telephone here") $(this).css("color", "#333333");
//    });
//    enquiry3.blur(function() {
//        if ($(this).attr("value") == "") $(this).attr("value", "Enter your telephone here");
//        if ($(this).attr("value") == "Enter your telephone here") $(this).css("color", "#999999");
//    });
//    enquiry4.focus(function() {
//        if ($(this).attr("value") == "Enter your enquiry here") $(this).attr("value", "");
//        if ($(this).attr("value") != "Enter your enquiry here") $(this).css("color", "#333333");
//    });
//    enquiry4.blur(function() {
//        if ($(this).attr("value") == "") $(this).attr("value", "Enter your enquiry here");
//        if ($(this).attr("value") == "Enter your enquiry here") $(this).css("color", "#999999");
//    });

});

Cufon.replace('#header ul.nav > li > a, .home-col2 h2')
