// JavaScript Document
function selected(){
	
	if(document.location.href.indexOf("home")>=0){
		document.getElementById("btn1").style.backgroundImage="url(images/home_02.png)";
	}else{
     	if(document.location.href.indexOf("about")>=0){
			document.getElementById("btn2").style.backgroundImage="url(images/about_02.png)";		
			}else{
				if(document.location.href.indexOf("portfolio")>=0){
					document.getElementById("btn3").style.backgroundImage="url(images/portfolio_02.png)";
					}else{
						if(document.location.href.indexOf("blog")>=0){
							document.getElementById("btn4").style.backgroundImage="url(images/blog_02.png)";
							}else{
								if(document.location.href.indexOf("contact")>=0){
									document.getElementById("btn5").style.backgroundImage="url(images/contact_02.png)";
									}else{
									document.getElementById("btn1").style.backgroundImage="url(images/home_02.png)";
									} // fin if home
 							} // fin if contact
					} // fin if blog
				} // fin if portfolio
		}  //fin about
} // fin de function
