// JavaScript Document

$(document).ready(function(){
	var page = location.pathname;
		page = page.split('/').pop();

	
	pagesEN = ['','index.html','services.html','portfolio.html','contact.html'];
	pagesSR = ['','index.html','usluge.html','projekti.html','kontakt.html'];

	srbPage = page;
	for(var i=0; i < pagesEN.length; i++){
		if(pagesEN[i] == page){
			srbPage = pagesSR[i];
			break;
		}
	}

	$('#langBar').html('<a href="../sr/'+srbPage+'" class="lang" title="Srpski"><img src="images/rs.png" width="16" height="11" alt="sr" border="0" hspace="3" vspace="2" /></a>&nbsp;<a href="'+page+'" class="lang" title="English"><img src="images/gb.png" width="16" height="11" alt="en" hspace="0" border="0" vspace="2" /></a>');

	$("#mainManu a[class!='selected']").hover(
		function(){
			$(this).animate({ color: "#B2CC33" }, 250);
		},
		function(){
			$(this).animate({ color: "#FFF" }, 250);
		}
	);	
});