

$(document).ready(function(){
	//setTimeout(function() {

	$('#_sun').fadeIn(3000);
	//}, 1000);
	
});

$(function(){
	$('#_sun1').click(function() {
		if($(this).attr('src') == '/img/sun1.png') {
			$(this).attr('src', '/img/sun2.png');
		} else {
			$(this).attr('src', '/img/sun1.png');
		}
    });

});
$(function(){
	$('#_sun1').dblclick(function() {
		ShowOrHide('container');
		ShowOrHide('container2');
		$('#_kote_speak').html("Котэ шикарен!");
    });
});
$(function(){
	$('#kote1').click(function() {
		ShowOrHide('container2');
		ShowOrHide('container');
    });
});

function ShowOrHide(id_element) {
	if($("#"+id_element).css("display") == 'none') {
        $("#"+id_element).fadeIn(1000);
    } else {
        $("#"+id_element).fadeOut(1000);
    }
}

