$(document).ready(function(){
	$('#navbar a').mouseover(function(){
		$(this).css('opacity','0.6');
		$(this).css('filter','alpha(opacity=60)');
	});
	$('#navbar a').mouseout(function(){
		$(this).css('opacity','1');
		$(this).css('filter','alpha(opacity=100)');
	});
	//Aktywny link
	rightLinks=$('#right a');
		$.each(rightLinks,function(index,value){
			a=$(value).attr('href');
			if (a.substring(a.indexOf('=')+1,a.length)==act) {		
			$(this).css('color','#8C1F60');
			$(this).css('font-weight','700');
			}
		});
});
