$(document).ready(function(){
	$('#main').fadeIn('slow');
});
$(document).ready(function(){
$(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});$(':text').focusin(function(){
	$(this).css('background-color', '#B2FF70');
});

$(':text').blur(function(){
	$(this).css('background-color', '#ffff77');
});

$('textarea').focusin(function(){
	$(this).css('background-color', '#B2FF70');
});

$('textarea').blur(function(){
	$(this).css('background-color', '#ffff77');
});


$(':password').focusin(function(){
	$(this).css('background-color', '#B2FF70');
});

$(':password').blur(function(){
	$(this).css('background-color', '#ffff77');
});

$(':submit').click(function(){
	$(this).attr('value','Prašome palaukti...');
	$(this).attr('disabled', false);
});
