$(document).ready(function(){
	$("#primaryNav a").fadeTo("slow", 0.5);
	$("#primaryNav a").hover(function(){
		$(this).fadeTo("slow", 0.9);
		$(this).css({'background': 'url(img/horizmenu-active.png) no-repeat'});
	},function(){
		$(this).fadeTo("slow", 0.5);
		$(this).css({'background': ''});
	});
});