$(document).ready(function(){
	$('#wco-pages').hide();
	
	$('#wcop-expand').toggle(
			function(){
			    $(this).text(LANG['hide']);
				$('#wco-pages').show('slow');
			},
			function(){
			    $(this).text(LANG['show_other']);
				$('#wco-pages').hide('slow');
			}
		);

        $("#content-l input[type=text], #content-l textarea").focus(function(){
            $(this).addClass("active");
        });

        $("#content-l input[type=text], #content-l textarea").blur(function(){
            $(this).removeClass("active");
        });

       $('a[rel=new-window]').click(function(){
            window.open(this.href);
            return false;
        });
	
});
