// JavaScript Document

$(document).ready(function(){
call_content(1);

});

function call_content(pg){
	switch(pg){
	case 1: $.post('inicio.html?rid='+Math.random(),function(d){
	$('#contenido_holder').html(d);	
	$('#contenido_holder').show('slow');		
	},'html');
	break;
	case 2: $.post('nosotros.html?rid='+Math.random(),function(d){
	$('#contenido_holder').html(d);
	$('#contenido_holder').show('slow');	
	},'html');
	break;
	case 3: $.post('servicios.html?rid='+Math.random(),function(d){
	$('#contenido_holder').html(d);
	$('#contenido_holder').show('slow');	
	},'html');
	break;
	case 4: $.post('productos.html?rid='+Math.random(),function(d){
	$('#contenido_holder').html(d);	
	$('#contenido_holder').show('slow');
	},'html');
	break;
	case 5: $.post('reportes.html?rid='+Math.random(),function(d){
	$('#contenido_holder').html(d);	
	$('#contenido_holder').show('slow');
	},'html');
	break;
	case 6: $.post('contacto.html?rid='+Math.random(),function(d){
	$('#contenido_holder').html(d);
	$('#contenido_holder').show('slow');	
	},'html');
	break;
	}
}

function call_service(){
	this.menu=function(opc){
		switch(opc){
		case 1:
		$('.menu_serv_opcs').each(function(bs){this.style.display='none'});
		$('.pg_service').each(function(pg){this.style.display='none'});
		$("#menu_serv").css('height','400px');
		$("#menu_serv_1").show('clip');
		break;
		case 2:
		$('.menu_serv_opcs').each(function(bs){this.style.display='none'});
		$('.pg_service').each(function(pg){this.style.display='none'});
		$("#menu_serv_2").show('clip');
		break;
		}		
	}
	this.content=function(cnt){
		if (cnt.search(/1_1/)=='-1'){if ($("#menu_serv_1").css('display')!='none'){$("#menu_serv_1").hide('clip');$("#menu_serv").css('height','200px');}}
		
		$('.pg_service').each(function(pg){this.style.display='none';});
		$('#content_serv_'+cnt).show('fold');
	}
}
