$(function() {
	//Копирование результата в буфер
	if (!document.getElementById('result')) {
		return;
	}
	ZeroClipboard.setMoviePath( '/js/zeroclipboard/ZeroClipboard.swf' );
	var clip = new ZeroClipboard.Client();
	clip.setText(document.getElementById('result').innerHTML);
	clip.glue( 'clip_button' );
	clip.setHandCursor( true );
	clip.addEventListener( 'oncomplete', function () {
		$('#copied').show();
	});
});

$(function () {
    // Очитска полей декораторов
    $('#decorators .item input').click(function() {
        this.value = '';
    });

    // Выбор всех чекбоксов(All)
    $('#filters-col input[type=checkbox]').filter('input[value=all]').click( function () {
        if ($(this).is(':checked')) {
            $('#filters-col input[type=checkbox]').attr('checked', true);
        } else {
            $('#filters-col input[type=checkbox]').attr('checked', false);

        }
    });

});

$(function() {
	// В избранное
	$('#addToFav').jFav();

    // прячем мыло
    if ($('#hidden-email').size()) {
        $('#hidden-email').html(decodeURIComponent($('#hidden-email').text() + '.ru'));
    }

    //закругляем меню
    $('#extended-menu .current').corner();
        
});
