$(function() {
    /*$("a.iframe").fancybox({
        frameWidth: 980,
        frameHeight: 1200,
        overlayOpacity: 0.8,
        zoomOpacity: false,
        imageScale: false,
        padding: 0,
        centerOnScroll: false
    });*/

    $("a.iframe").click(function() {

        window.open($(this).attr('href'), 'gallery', 'width=1200,height=980,toolbar=no,resizable=yes,scrollbars=no,status=no')

        return false;
    });

    $('#search-form img').click(function() {
        $(this).parents('form:first').submit();
    })

    var defaultValue = 'Поиск';
    $('#search-form input[type=text]').focus(function() {
        if ($(this).val() == defaultValue) {
            $(this).val('');
        }
    }).blur(function() {
        if ($(this).val() == '') {
            $(this).val(defaultValue);
        }
    });

    $('.oblock-start').appendTo($('.oblock-end')).show();
});
