$(document).ready(function(){
	// code for inputs
	var _input = $('input[type="text"]');
	_input.hover(function(){
		$(this).addClass('rollover');
	}, function(){
		$(this).removeClass('rollover');
	});
});
