$(
	function()
	{		
		$("img").hover(
			function()
			{
				this.src = this.src.replace("-off","-on");
			},
			function()
			{
				this.src = this.src.replace("-on","-off");
			}
		);
		
		$("input").hover(
			function()
			{
				this.src = this.src.replace("-off","-on");
			},
			function()
			{
				this.src = this.src.replace("-on","-off");
			}
		);
	}
)

function searchNumerosus (numerosus, mobile)
{
	window.location.href = encodeURI ("" + numerosus);
	
	/*
	if ( mobile == true )
		window.location.href = encodeURI ("/mobile/" + numerosus);
	else
		window.location.href = encodeURI ("" + numerosus);
	*/
}
