            get_login_background = function(name){
                return "url(/media/images/" + name + ".jpg) 0 2px no-repeat";
            }

            $(document).ready(function(){
                $('#page_content').corner("top 10px");
                
                $('#blog_area_outer').corner("round 10px");
                $('#blog_area_header').corner("top 10px");
                $('#blog_area_body').corner("bottom 10px");

		$('#twitter_area_outer').corner("round 10px");
                $('#twitter_area_header').corner("top 10px");
		$('#twitter_area_body').corner("bottom 10px");
                
                $('#navigation').corner("round 10px");
                
                $('div.selection_item').wrap('<div class="sel_outer"></div>');
                $('div.selection_item').corner("round 8px").parent().corner("round 10px")
                
                $('div.feature_item').corner("round 10px;");



		$('#ea_newsletter', '#left_side').each(function(){
                    if($(this).attr('value') == ""){
                        $(this).css("background", get_login_background("username"));
                    }
                });

                $('#ea_newsletter', '#left_side').focus(function(){
                    $(this).css("background", "none");
                });

                $('#ea_newsletter', '#left_side').blur(function(){
                    if($(this).attr('value') == ""){
                        $(this).css("background", get_login_background("username"));
                    }
                });



                $('.login_field', '#login_box').each(function(){
                    if($(this).attr('value') == ""){
                        $(this).css("background", get_login_background($(this).attr('name')));
                    }
                });

                $('input', '#login_box').focus(function(){
                    $(this).css("background", "none");
                });

                $('input', '#login_box').blur(function(){
                    if($(this).attr('value') == ""){
                        $(this).css("background", get_login_background($(this).attr('name')));
                    }
                });
            });

