/* ::: Alias para jQuery ::: */
var $jQ = jQuery.noConflict();

/* ::: Eventos "ready" ::: */
$jQ(document).ready(InitUMForms);

/* ::: Inicialización ::: */
function InitUMForms()
{
	if($jQ.browser.msie  /*&& $jQ.browser.version < 7*/)
	{
		$jQ("input[type=text], input[type=password], input[type=file], textarea").addClass("textbox");
		$jQ("input[type=text], input[type=password], input[type=file], textarea").hover
		(
			function()
			{
				$jQ(this).addClass("textboxHover");
			},
			function()
			{
				$jQ(this).removeClass("textboxHover");
			}
		);
		$jQ("input[type=button], input[type=submit], input[type=reset]").addClass("button");
		$jQ("input[type=button], input[type=submit], input[type=reset]").hover
		(
			function()
			{
				$jQ(this).addClass("buttonHover");
			},
			function()
			{
				$jQ(this).removeClass("buttonHover");
			}
		);
	}
}