
jQuery(function ($) {
	
	$('.hoverable').hover( function() {
		$(this).addClass('hover');
	}, function () {
		$(this).removeClass('hover');
	});
	
	// Put input type into class name
	$('input').each(function() {
		$(this).addClass(this.type);
	});
	
});
