$(function(){
    $("#slides").slides({
        preload: true,
        preloadImage: '/img/ajax.gif',
        play: 7000,
        pause: 7000,
        slideSpeed: 2000,
        pagination: true,
        effect: 'fade'
    });
});
$(function(){
    $('#search_price_from').focus(function(){
        $(this).val('');
    }); 
    $('#search_price_to').focus(function(){
        $(this).val('');
    });
    $('#search_name_v').focus(function(){
        $(this).val('');
        $('#search_price_from').val('');
        $('#search_price_to').val('');
    }); 
});
