$(function()
{
    $('input.helper').focus(function()
    {
        if($(this).val() == $(this).attr('title'))
        {
            $(this).val('').removeClass('helper');
        }
    }).blur(function()
    {
        if(!$(this).val().length)
        {
            $(this).val($(this).attr('title')).addClass('helper');
        }
    });

    $(window).load(function()
    {
        $('#slider').nivoSlider({
            effect: 'boxRandom',
            directionNav: false,
            pauseTime: 2000
        });
    });
});
