﻿$(document).ready(function() {
    $("a[rel^='prettyPhoto']").prettyPhoto();
    $('#inp-search').example(function() {
        return $(this).attr('title');
    });
    $('.autopostback').change(function() {
        $(this).parents('form').unbind();
        $(this).parents('form').submit();
    });
    $('input:image.autopostback').click(function() {
        $(this).parents('form').unbind();
        $(this).parents('form').submit();
    });
});  
