// JavaScript Document
$(document).ready( function(){
	$(".selflabel").each( function(index) {
	o = $(this);
	o.val(o.attr("title"));
	
	o.bind("focus",function(){
		o1 = $(this);
		t = o1.attr("title");

			if(t==o1.val()) {
			o1.val("");
			o1.addClass("selflabel_selected");
			}
		});
	
	o.bind("blur",function(){
		o1 = $(this);
		t = o1.attr("title");

			if(o1.val()=="") {
			o1.val(t);
			o1.removeClass("selflabel_selected");
			}
		});
	});
});
