$(document).ready(function(){	
	$.each($('input:[type="hidden"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('input_hidden');		
	});

	$.each($('input:[type="submit"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('input_submit');		
	});
	
	$.each($('input:[type="checkbox"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('input_checkbox');		
	});
	
	$.each($('input:[type="image"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('input_image');		
	});

	$.each($('input:[type="text"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('input_text');		
	});
	
	
	
});
