/**
 * 	
 *  Copyright(c) 2009: Mantecao / Grupo Alion C.A.
 *  url: www.mantecao.com.ve/licensing
 *  email: licensing@mantecao.com.ve   
 *  author: Nilda Ching
 * 
 */

var sPage;
$(document).ready(function() {
			
	$(window).bind('resize', function() {
		windowResize();
	});
	
	//ajuste en el header de acuerdo al tamano de la ventana
	windowResize();
		
	var sPath = window.location.pathname;
	sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	if(sPage == "") sPage = "index.html";
			
		switch(sPage){
			case 'index.html':{
				getTweets(3);
				// reordenar el contenedor de elementos del scrollable
				$('#container_images_scrollable').reorder();
				// inicialización del scrollable
				start_scrollable('studycases',1);
				setMouseOverTabs();
				$("img[rel]").overlay();
				$('a.media').media();
				break;
			}
			case 'estudio.html':{
				// initialize scrollable together with the navigator plugin
				start_scrollable_navigator(this.location.hash); 
				loadOriginalfirstImagebycase();
				break;
			}
			case 'servicios.html':{
				start_gralInnerfade('content-servicios','text-servicios','servicios','<a href="#" class="active"></a>','<a href="#"></a>',400);
				//eliminar atributo display:none de los div
				$("div","ul#text-servicios").removeAttr("style");
				if(this.location.hash != "" && this.location.hash != "#"){
					$(".lista-servicios ul#servicios li." + this.location.hash.replace("#","")).trigger('click');
				}
				break;
			}
			case 'empresa_oficinas.html':{
				start_scrollable_photo_oficina();
				break;
			}
			case 'contacto.html':{
				$("form").attr("action", config.proxy_and_service('mailsdeliver') );
				sendMessageContact();
				break;
			}
			case 'empresa_filosofia.html':{
				start_gralInnerfade('content-filosofia','text-filosofia','filosofia','','',400);
				setStyleLinkNavigatorFilosofia();
				break;
			}
			case 'portafolio.html':{
				start_scrollable_portafolio(this.location.hash);
				break;
			}
	}
});
