igotweb.Tools.namespace("igotweb.templates");igotweb.templates.navigation=function(data,section){this._section=section;this._data=data;this._homeLink=jQuery(".home",this._section);this._homeLink.bind("click",jQuery.proxy(this.__onHomeLinkClick,this));this._cvLink=jQuery(".cv",this._section);this._cvLink.bind("click",jQuery.proxy(this.__onCvLinkClick,this));this._portfolioLink=jQuery(".portfolio",this._section);this._portfolioLink.bind("click",jQuery.proxy(this.__onPortfolioLinkClick,this));this._galleriesLink=jQuery(".galleries",this._section);this._galleriesLink.bind("click",jQuery.proxy(this.__onGalleriesLinkClick,this));};igotweb.templates.navigation.prototype.__onHomeLinkClick=function(evt){evt.preventDefault();igotweb.igotweb.index.loadPage("home");};igotweb.templates.navigation.prototype.__onCvLinkClick=function(evt){evt.preventDefault();igotweb.igotweb.index.loadPage("cv");};igotweb.templates.navigation.prototype.__onPortfolioLinkClick=function(evt){evt.preventDefault();igotweb.igotweb.index.loadPage("portfolio");};igotweb.templates.navigation.prototype.__onGalleriesLinkClick=function(evt){evt.preventDefault();igotweb.igotweb.index.loadPage("galleries");};
