function xbc(){	
	//OPERA
	if(this.navigator.userAgent.indexOf("Opera")>-1){		
		$("input").each(function(key,val){
			//Hides Opera input button values
			var type = $(this).attr('type');
			if(type=='button' || type=='submit'){
				$(this).attr('value', '');
				del = $(this).attr('class');			
				//Fixes Opera delete button positioning	
				if(del=='CartDeleteButton'){
					$(this).css('position', 'relative');
					$(this).css('top', '-1px');
				}
			}
		});
	}
	//IE6
	if(this.navigator.appVersion.indexOf("MSIE 6.0")>-1 ){	
		$("input").each(function(key,val){
			//Hides IE6 input button values
			var type = $(this).attr('type');
			if(type=='button' || type=='submit'){
				$(this).attr('value', '');
				del = $(this).attr('class');			
				//Fixes IE6 delete button positioning	
				if(del=='CartDeleteButton'){
					$(this).css('position', 'relative');
					$(this).css('top', '0px');
				}
			}
		});
	}
}
