// retira blur de ancoras
function blurAnchors(){
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}
}
window.onload = blurAnchors;

// menu lava
$(function() {
	$("div#topo ul").lavaLamp({
		fx: "backout",
		speed: 700,
		click: function(event, menuItem) {
			return true;
		}
	});
});

// efeito focus na lista de trabalhos
$(document).ready(function() {
	$('div.trabalhos ul').children().hover(function() {
		$(this).siblings().stop().fadeTo(300,0.5);
		}, function() {
		$(this).siblings().stop().fadeTo(300,1);
	});
});