$(document).ready(function(){
						   
/* Ventana lenguage */
	$("#open_win_help").click(function () {
		$("#win_help").fadeIn(500);
		return false;
	});
	$("#close_win_help").click(function () {
		$("#win_help").fadeOut(500);
		return false;
	});
	/* Ventana mas informacion */
	/* No poner, se usa desde el PHP */
});