/**
* Инструкция на главной
*
*/  
$(function() {  
    if (!$.cookies.get('HIDE_INSTRUCTIONS')) {
       $("#instruction").show(); 
    } 
    
    // Сворачиваем инструкцию на главоной
    $("#instruction .content_skip").click(function(){
        $("#instruction").animate({opacity: 0}, "slow", function() {
            $(this).slideUp("slow");
        });
        
        $.cookies.set('HIDE_INSTRUCTIONS', 'true');
    });
    
    // Скрываем все лишнее
    $jDivText = $("#instruction .instruction-text > div");
    $jDivText.hide()
        .filter(':first')
        .show();
        
    $("#instruction a").click(function(){        
        $jDivText.hide();
        $jDivText.filter(this.hash)
            .show();
        return false
    });
});
