jQuery(document).ready(function(){
	jQuery(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 });
	jQuery(".list-cat").lavaLamp({ fx: "backout", speed: 700 });
	jQuery("a[rel~=external]").attr('target','_blank').attr('class', jQuery("a[rel~=external]", this).attr('class')+' external');
	jQuery('.post-portfolio a img').css('opacity', '0.6');
	jQuery('.post-portfolio a img').mouseover(function() {
		jQuery(this).animate({'opacity': '1'}, 400);
	}).mouseout(function() {
		jQuery(this).animate({'opacity': '0.6'}, 400);
	});
});
