var tOut = null;
var changed = '#d8f7a1';

if (location.pathname.indexOf('admin') == -1) $(function() { $('.gallery a').lightBox(); });

function hider () {
    $('#alert').empty().hide();
    clearTimeout(tOut);
}

function submenu_toggle (id) {
	var id;
	$('div[@id^=sub_]').not('#' + id).hide();
	$('#' + id).toggle();
	$('#menu a').blur();
}

$(document).ready( function () {

    tOut = window.setTimeout('hider()', 8000);

    $('#review-add').click( function () {
        $('#review-form').show();
        $(this).hide();
    });
    $('#review-close').click( function () {
        $('#review-form').hide();
        $('#review-add').show();
        $('input[@name=name], input[@name=email], textarea[@name=body]').val('');
    });

    $('div.cutting a').click( function () {
        $(this).parents('.cutting').children().toggle();
    });

    $('.t_1, .t_2').hover( function () {
        changed = $(this).css('background-color');
        $(this).css('background-color', '#d8f7a1');
    }, function () {
        $(this).css('background-color', changed);
    });

});
