// JavaScript Document

$(document).ready(function(){
	
	$("#menu_principal a").each(function(index, domEle){
										 
		$(this).attr("href" , $(this).attr("href") + '?s=' + (index + 1));
		
		if (!s || s == '') {
			//if (($.urlParam('s') == false && index == 0) || $.urlParam('s') == (index + 1)) {
			if ($.urlParam('s') == (index + 1)) {	
				$(this).addClass("seleccionado");
			}
		} else {
			if (s == (index + 1)) {
				$(this).addClass("seleccionado");
			}
			
		}
		
	});
	
	$("#menu_pie a").each(function(index, domEle){
										 
		$(this).attr("href" , $(this).attr("href") + '?s=' + (index + 1));
		
	});
	
});
