$(document).ready(function(){
     $('div.toggler-c').toggleElements(
     { fxAnimation:'slide', fxSpeed:'slow', className:'toggler' } );
     $('ul.toggler-c').toggleElements(); });

$(function(){
    $('input[type="text"]').focus(function(){
        $(this).css("background-color" , "#fffce0");
    });      
    $('input[type="text"]').blur(function(){
        $(this).css("background-color" , "#fff");
    });

    $("textarea").focus(function(){
        $(this).css("background-color" , "#fffce0");
    });      
    $("textarea").blur(function(){
        $(this).css("background-color" , "#fff");
    });   
});  