$(function() {
    /*** Input Text For Search ***/
    $('input.jQfocusBlurText').each(function(){
       $(this)
        .data('text', $(this).val())
        .focus(function(){
            if($(this).val() == $(this).data('text')){$(this).val('');}
        })
        .blur(function(){
            if($(this).val() == ''){$(this).val($(this).data('text'));}
        });
    });

    $("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});

    $("#jsSlider").scrollable({
        circular: true,
        onBeforeSeek: function(event,i){
            var api = $("#jsSlider").data("scrollable");
            $("#jsSlider div.promoText" + api.getIndex()).fadeOut('fast');
        },
        onSeek: function(event,i){
            var api = $("#jsSlider").data("scrollable");
            $("#jsSlider div.promoText" + api.getIndex()).fadeIn('slow');
        }
    }).navigator().autoscroll(5000);
});
