﻿$(document).ready(document_ready);

function document_ready() {
    var $menuSecciones = $('#Head');
    if ($menuSecciones.length > 0) $.each($menuSecciones.attr("class").split(" "), function(i, $i) { $menuSecciones.find("li." + $i).addClass("seleccionado"); });

    var $subMenuNavegacion = $(".subMenuPrincipal");
    if ($menuSecciones.length > 0) $.each($menuSecciones.attr("class").split(" "), function(i, $i) { $subMenuNavegacion.find("li." + $i).addClass("seleccionado"); });
    
    $(".scrollPage").click(function(event){
        //http://beski.wordpress.com/2009/04/21/scroll-effect-with-local-anchors-jquery/
        //prevent the default action for the click event
		event.preventDefault();
		
		//split the url by # and get the anchor target name - home in mysitecom/index.htm#home
		var trgt = this.href.split("#")[1];
		
		//animate to top offset of the target anchor
		if ($("#"+trgt).length) $('html, body').animate({scrollTop:$("#"+trgt).offset().top}, 500);
	});

}