// home page scripts
$(document).ready(function() {
    var tmpFormVal;

    $('input').focus(function(){
        tmpFormVal=$(this).val();

       if(tmpFormVal=='Full Name' || tmpFormVal=='Email' || tmpFormVal=='Enter search string'){
            $(this).val('');
       }
    });

    $('input').blur(function(){
        if($(this).val()==''){

            if(tmpFormVal=='Full Name' || tmpFormVal=='Email' || tmpFormVal=='Enter search string'){
                $(this).val(tmpFormVal);
            }
        }
    });

    $('.accordion').accordion();

    $(".slider").easySlider({
        continuous: true,
        prevId: 		'btnPrevFeat',
        prevText: 		'Previous',
        nextId: 		'btnNextFeat',
        nextText: 		'Next',
        controlsShow:		true,
        auto: true,
        speed: 		1800,
        pause:		4000
    });

    $("#topNavContainer ul.horiz li").hover(
        function() {
            $(this).children("ul").stop().hide().css("height","auto").slideDown("slow");
        },
        function() {
            $(this).children("ul").stop().slideUp("slow");
        });

});

