$(document).ready(function(){

$('input').each(function(index) {
    if ($(this).attr("title")!="") $(this).val($(this).attr("title"));
  });


$("input").focus(function() {
	if ($(this).attr("title")!="") {
			if ($(this).val()==$(this).attr("title")) $(this).val(""); 
	}
});

$("input").blur(function() {
	if ($(this).val()=="") $(this).val($(this).attr("title"));
});


$(".prenew").hover(function(){
      $(this).toggleClass('active');
      },function(){
       $(this).toggleClass('active');
    });

});



