$(document).ready(function(){
 $("a[href^='http']").attr('target','_blank');
 $("a[href^='http']").attr('class','Arrow');
 $("a[href^='viewer']").attr('class','Download');
 
	jQuery(function($){

		var objBody = document.getElementsByTagName('body')[0];
		for(i = 0; i<objBody.getElementsByTagName('input').length;i++)
		{
			var objElement = objBody.getElementsByTagName('input')[i];
			if(objElement.type == "text")
			{
				$("#"+objElement.id+"").Watermark(objElement.value); 
			}
		}
		
		for(i = 0; i<objBody.getElementsByTagName('textarea').length;i++)
		{
			var objElement = objBody.getElementsByTagName('textarea')[i];
			$("#"+objElement.id+"").Watermark(objElement.value);  
		}
		
	});
 
});  
