$(document).ready(function(){
    // Set email subscription field actions
    $('.r-rss2email INPUT[type="text"], .end-post-subscribe INPUT[type="text"]').click(function(){
        $(this).val('');    
    });
    
    // Pages hover actions
    $('.pages-bottom A').hover(
        function(){
            $(this).css('opacity', 0.6);
        },
        function(){
            $(this).css('opacity', 1);
        }
    );
    
    // Images gallery
    $("a[rel='cbox']").colorbox();
    $("a[rel='cbox']").append('<div class="cbox-enlarge"></div>');
    
    // Textarea cleaning
    $('TEXTAREA.cmt-area').click(function(){
        if($(this).val() == 'что желаете сказать?')
        {
            $(this).val('');
        }
    });
});
