// JavaScript Document
jQuery.noConflict();
 jQuery(document).ready(
 	function(){
   		jQuery("a").click(
			function(){
				if (this.id=="aplicacion")
				{
					windows.open(this.href);
					return false;
				}
				var rand = '?rand=' + Math.random(); 
				jQuery("#contenido").load(jQuery(this).attr("href")+rand);
				return false;
			}
		);	
 	}
);
