$(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('hidden');		
	});

	$.each($('input:[type="submit"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('submit_btn');		
	});
	
	$.each($('input:[type="checkbox"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('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');		
	});
	
	$.each($('input:[type="password"]'), function() {   					
		//convert the element to a jquery object (so we can manipulate it)
		var hiddenElement = $(this);
		hiddenElement.addClass('input_text');
		hiddenElement.addClass('input_password');		
	});


	
});
