$(document).ready(function(){
	$("div.arrow.black").hover(arrowToYellow,arrowToBlack);
	
	$("h2.agency").click(function(){window.location="/Umbod";});
	$("h2.projects").click(function(){window.location="/Verkefni";});
	
});

function arrowToYellow()
{
	$(this).addClass('yellow').removeClass('black');
}

function arrowToBlack()
{
	$(this).addClass('black').removeClass('yellow');
}

