/*
 * 
 * Licenced under GPL Licence.
 *
 * Date: 2009-02-04
 * Version 1.0
 *
 */

function imageOnFieldByClass(image,type_class)
{
	$("."+type_class).css({"background-image":"url("+image+")","background-repeat":"no-repeat"});
	
	$("."+type_class).focus(function(){
		$(this).css({"background":"#none"});
	});
	
	$("."+type_class).blur(function(){
		if($(this).val() == "")
		{
			$(this).css({"background-image":"url("+image+")","background-repeat":"no-repeat"});
		}
	});
}

function imageOnFieldById(image,id)
{
	$("#"+id).css({"background-image":"url("+image+")","background-repeat":"no-repeat"});
	
	$("#"+id).focus(function(){
		$(this).css({"background":"none"});
	});
	
	$("#"+id).blur(function(){
		if($(this).val() == "")
		{
			$(this).css({"background-image":"url("+image+")","background-repeat":"no-repeat"});
		}
	});
}



