// JavaScript Document


$(document).ready(function(){
	$(".inputs,.inputslng,.inputsml").each(function (i) {
		var title = $(this).attr("title");
		if( ($(this).val()) == title || ($(this).val()) == "" )
		{
			$(this).val(title);
			$(this).focus(function(){
				var c = $(this).val();
				if( c == title){
					$(this).val('');
				}
			});
		}
		$(this).blur(function(){
			var b = $(this).val();
			if( b == ''){
				$(this).val(title);
			}
		});
	});
});


