// Lang switcher ***************************************************************
function ToggleLangs(id) {
    $('.lang').removeClass('selected');
    $('#' + id).addClass('selected');
    
    $('.text_item').slideToggle('slow');
}

// Initialize Editor ***********************************************************
function InitEditor() {
    var config_s = {
                    language: 'ru',
                    height: '160px',
                    resize_enabled: false,
                    toolbar : [
                                ['Undo','Redo'],  
                                ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
                                ['NumberedList','BulletedList'],
                                ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
                                ['Table','-','Maximize']
                              ]
                };
    
    $('.jquery_ckeditor_s').ckeditor(config_s);   
}
// Initialize FancyBox *********************************************************
function InitFancy() {
    $("a.fancy").fancybox();
}
// Clear Filter ****************************************************************
function ClearFilter() {
    $(".fields .item select").val(0);
}

// Show/Hite Toggle ************************************************************
function SlideToggle(id) {
    $('#' + id).slideToggle('normal');
}

// Start main page flash *******************************************************
function StartMainFlash() {
    $.fancybox({
        'padding'		: 0,
        'autoScale'		: false,
        'transitionIn'	: 'none',
        'transitionOut'	: 'none',
        'width'		    : 620,
        'height'		: 460,
        'href'			: 'img/flash/miroplast_iso_620x460.swf',
        'type'			: 'swf',
        'showCloseButton': true,
        'overlayOpacity': 0,
		'overlayColor'  : '#000000',
        'swf'			: {
            'wmode'		: 'transparent',
            'allowfullscreen'	: 'true'
        }
    });
}

// Start main page flash *******************************************************
$(document).ready(function() {
    $('.banner_place a').fancybox({
        'padding'		: 0,
        'autoScale'		: false,
        'transitionIn'	: 'none',
        'transitionOut'	: 'none',
        'width'		    : 460,
        'height'		: 368,
        'href'			: 'videos/player_flv_multi.swf',
        'type'			: 'swf',
        'showCloseButton': true,
        'overlayOpacity': 0,
		'overlayColor'  : '#000000',
        'swf'			: {
            'wmode'		: 'opaque',
            'movie'     : 'videos/player_flv_multi.swf',
            'FlashVars' : 'flv=../videos/miroplast_video.flv&amp;startimage=img/play_video.jpg&amp;width=460&amp;height=368&amp;showstop=1&amp;showvolume=1&amp;showtime=1&amp;playeralpha=20&amp;margin=0&amp;autoplay=1'
        }
    });
    
    return false;
});
