// JavaScript Document

$(function() {
	$("a.prima-pagina").hover(
		function() { $(this).addClass("prima-pagina-hover"); },
		function() { $(this).removeClass("prima-pagina-hover"); }
	);
	$("a.profil").hover(
		function() { $(this).addClass("profil-hover"); },
		function() { $(this).removeClass("profil-hover"); }
	);
	$("a.servicii").hover(
		function() { $(this).addClass("servicii-hover"); },
		function() { $(this).removeClass("servicii-hover"); }
	);
	$("a.portofoliu").hover(
		function() { $(this).addClass("portofoliu-hover"); },
		function() { $(this).removeClass("portofoliu-hover"); }
	);
	$("a.contact").hover(
		function() { $(this).addClass("contact-hover"); },
		function() { $(this).removeClass("contact-hover"); }
	);
});