jQuery.noConflict();

jQuery(document).ready(
	function(){
		//displayDate();
		jQuery('ul#banner').innerfade({
			speed: 850,
			timeout: 3000,
			type: 'sequence',
			containerheight: '194px'
		});
		/*jQuery.uicornerfix('6px');*/
		
		jQuery('#opciones li').click(function()
		{
			var valor=this.value;
			cargarContenido(valor);
			jQuery(this).addClass("servicio_activo");
			
			jQuery('#opciones li').each(function()
			{
				if(this.value != valor)
				{
					jQuery(this).removeClass("servicio_activo");
				}
			});
			
		});
		
		/*jQuery.fn.colorbox.settings.transition = "fade";
		jQuery.fn.colorbox.settings.bgOpacity = "0.8";
		jQuery.fn.colorbox.settings.contentCurrent = "({current}/{total})";
		jQuery(".zoom").colorbox();*/

		
	});

function toogleContenido(id)
{
	jQuery(id).slideToggle();
}


// standard date display function with y2k compatibility


