$(document).ready(function(){
    $('.styled select, .styled input').css('opacity', '0');
    $('.styled select').each(function(){
       $(this).prev().children().html($(this).find('option:selected').text()); 
    });
    $('.styled option').click(function(){
        $(this).parent().prev().children().html($(this).text());
    });
    
    $('.input input').focus(function() {
        $(this).prev().fadeOut('fast');
    });
    $('.input input').blur(function() {
        if ($(this).val().length == 0) {
        $(this).prev().fadeIn('fast');
        }
    });

});
