﻿//window.addEvent('domready', function() {
    //swietaShow();
    
//})
function showSwieta() {
    alert('a');
    $('swieta').fade('in');
}
function swietaShow() {

    var mci = Cookie.read('sowswieta');
    if (mci != null) {
        $('swieta').removeClass('sw_show');
        $('swieta').addClass('sw_hid');
       
    }
    else {
        $('swieta').fade('in');
    }
    $('acl').addEvent('click', function(e) {
        $('swieta').fade('out');
        
        var mySwieta = Cookie.write('sowswieta', '1');
    });
   
    
    
    
    
    //$('swieta').addEvent('click', function(e){
	//e.stop();
	//$('swieta').tween('background-color', '#f00');
	//$('swieta').tween('opacity', 0.7);
    //});
    
    
    
    //var fx = new Fx.Tween($('swieta'));
    //alert(fx);
    //fx.start({
    //'background-color', '#000', '#f00',
      
    //});
   
    //$('swieta').addEvent('click', function(){
	//	$('swieta').morph({
	//		'color': 'red'
	//	});
    
    
    //var myMorph = new Fx.Morph($('swieta'), { duration: 1000 });
    //alert($('swieta').getStyle('display'));
    //myMorph.start({ 'class': 'sw_show' });
    //$('swieta').morph({
    //'background-color': 'blue'
    //});
}


function setstylika() {
    var fx = new Fx.Tween($('test'));
    fx.start('background-color', '#000', '#f00').chain(function(){fx.start('height', '300px')});
    //setstylik().chain(setstylika());
}

function setstylik() {
    if ($('test').getStyle('background-color') == 'red') {
        $('test').morph({
            'background-color': 'blue',
            'color': '#78BA91',
            'width': '200px'
            
        });
    }
    else {
        $('test').morph({
            'background-color': 'red',
            'color': '#78BA91',
            'width': '300px'
        });
    }
}
